class Ne::NodeExpr
- Ne::NodeExpr
- Reference
- Object
Defined in:
ne/node_expr.crConstructors
Instance Method Summary
- #add(other : NodeExpr)
- #difference(other : NodeExpr)
- #each_group(&)
- #intersection(other : NodeExpr)
- #nodes : Hash(String, Set(UInt32))
- #parse(expr : String)
- #range_to_s(s : UInt32, e : UInt32, io : IO)
- #scan_file(filename : String)
- #scan_io(io : IO)
-
#to_s(io : IO)
Appends a short String representation of this object which includes its class name and its object address.
- #write_compressed(io : IO)
- #write_uncompressed(io : IO)
Constructor Detail
Instance Method Detail
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>