Flowdock
method

inquiry

Importance_1
v5.0.0.1 - Show latest stable - 0 notes - Class: Array
inquiry() public

Wraps the array in an ArrayInquirer object, which gives a friendlier way to check its string-like contents.

pets = [:cat, :dog].inquiry

pets.cat?     # => true
pets.ferret?  # => false

pets.any?(:cat, :ferret)  # => true
pets.any?(:ferret, :alligator)  # => false
Show source
Register or log in to add new notes.