class Array

Public Instance Methods

&(other) click to toggle source
# File lib/rulebow/core_ext/true_class.rb, line 27
def &(other)
  TrueClass === other ? dup : and_without_t(other)
end
Also aliased as: and_without_t
and_without_t(other)
Alias for: &
or_without_t(other)
Alias for: |
|(other) click to toggle source
# File lib/rulebow/core_ext/true_class.rb, line 23
def |(other)
  TrueClass === other ? dup : or_without_t(other)
end
Also aliased as: or_without_t