Class: So::Eq
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(a, b) ⇒ Eq
constructor
A new instance of Eq.
- #pp(n) ⇒ Object
- #substitute(v, e) ⇒ Object
Methods inherited from Expr
#!, #<, #==, #>, #[], #assert_time, #assert_value, #to_so_expr
Constructor Details
#initialize(a, b) ⇒ Eq
Returns a new instance of Eq.
154 155 156 157 |
# File 'lib/spec_object.rb', line 154 def initialize(a, b) @a = a @b = b end |