class QT::MtData
- QT::MtData
- Reference
- Object
Defined in:
core/m1_data.crConstructors
Instance Method Summary
- #add_head(node : MtTerm)
- #add_node(node : MtTerm)
- #add_tail(node : MtTerm)
- #apply_cap!(cap = true) : Nil
- #concat(other : MtData) : self
- #each(&)
- #fix_grammar!
- #head : MtNode
-
#inspect(io : IO) : Nil
Appends a String representation of this object which includes its class name, its object address and the values of all instance variables.
- #resolve_nested!(upper = @nestable.size - 1, lower = 0)
- #tail : MtNode
- #to_mtl(io : IO) : Nil
- #to_mtl : String
- #to_txt(io : IO) : Nil
- #to_txt : String
Constructor Detail
Instance Method Detail
def inspect(io : IO) : Nil
#
Description copied from class Reference
Appends a String representation of this object which includes its class name, its object address and the values of all instance variables.
class Person
def initialize(@name : String, @age : Int32)
end
end
Person.new("John", 32).inspect # => #<Person:0x10fd31f20 @name="John", @age=32>