module Gemmy::Patches::ArrayPatch::InstanceMethods::Reject

Public Instance Methods

reject(&blk) click to toggle source

make it an alias for reject(&:blank?) if no block given

Calls superclass method
# File lib/gemmy/patches/array_patch.rb, line 33
def reject(&blk)
  blk ? super : reject(&:blank?)
end