module LiberMeliorationum::In

Adds an `in` method to check whether object is in a collection

Public Instance Methods

in?(ary) click to toggle source
# File lib/liber_meliorationum.rb, line 172
def in?(ary)
        ary.respond_to? :include? and ary.include? self
end