class Z3::Ast
- Z3::Ast
- Reference
- Object
Defined in:
z3/ast.crz3/ast/arithmetic_operators.cr:1
z3/ast/arithmetic_operators.cr:15
z3/ast/compare_operators.cr:1
z3/ast/compare_operators.cr:27
z3/ast/logic_operators.cr
Constructors
Instance Method Summary
- #!=(b : self) : self
- #!=(v : Int) : self
- #*(b : self) : self
- #*(v : Int) : self
- #+(b : self) : self
- #+(v : Int) : self
- #-(b : self) : self
- #-(v : Int) : self
- #<(b : self) : self
- #<(v : Int) : self
- #<=(b : self) : self
- #<=(v : Int) : self
-
#==(b : self) : self
Returns
true
if this reference is the same as other. - #==(v : Int) : self
- #>(b : self) : self
- #>(v : Int) : self
- #>=(b : self) : self
- #>=(v : Int) : self
- #^(b : self) : self
- #and(b : self) : self
- #context : Context
- #finalize
- #implies(b : self) : self
-
#or(b : self) : self
NOTE Unable to overide || operator in Crystal due to semantics
-
#to_s(io : IO)
Appends a short String representation of this object which includes its class name and its object address.
- #to_unsafe : LibZ3::Ast
Constructor Detail
Instance Method Detail
Description copied from class Reference
Returns true
if this reference is the same as other. Invokes same?
.
NOTE Unable to overide || operator in Crystal due to semantics
def to_s(io : IO)
#
Description copied from class Reference
Appends a short String representation of this object which includes its class name and its object address.
class Person
def initialize(@name : String, @age : Int32)
end
end
Person.new("John", 32).to_s # => #<Person:0x10a199f20>