class So::Expr

Public Instance Methods

!() click to toggle source
# File lib/spec_object.rb, line 21
def !
  Not.not_(self)
end
<(other) click to toggle source
# File lib/spec_object.rb, line 13
def <(other)
  Lt.lt(self, other)
end
==(other) click to toggle source
# File lib/spec_object.rb, line 25
def ==(other)
  Eq.eq(self, other)
end
>(other) click to toggle source
# File lib/spec_object.rb, line 17
def >(other)
  Lt.lt(other, self)
end
[](key) click to toggle source
# File lib/spec_object.rb, line 29
def [](key)
  Index.index(self, key)
end
assert_time() click to toggle source
# File lib/spec_object.rb, line 33
def assert_time
end
assert_value() click to toggle source
# File lib/spec_object.rb, line 36
def assert_value
end
to_so_expr() click to toggle source
# File lib/spec_object.rb, line 9
def to_so_expr
  self
end