abstract class QT::MtNode
- QT::MtNode
- Reference
- Object
Direct Known Subclasses
Defined in:
core/mt_node/mt_base.crMacro Summary
Instance Method Summary
- #apply_cap!(cap : Bool)
- #aspect?
- #dic : Int32
- #dic=(dic : Int32)
- #ends_with?(key : String | Char)
- #find_by_key(key : String | Char)
- #fix_prev!(prev : Nil) : Nil
- #fix_prev!(prev : MtNode) : Nil
- #fix_succ!(succ : Nil) : Nil
- #fix_succ!(succ : MtNode) : Nil
- #idx : Int32
- #idx=(idx : Int32)
-
#inspect(io : IO)
Appends a String representation of this object which includes its class name, its object address and the values of all instance variables.
- #key : String
- #key=(key : String)
- #key_in?(*keys : String)
- #key_is?(key : String)
- #maybe_adjt? : Bool
- #maybe_verb? : Bool
- #prev : MtNode
- #prev=(prev : MtNode)
- #prev? : MtNode | Nil
- #prev?(&)
- #set!(val : String, tag : PosTag) : self
- #set!(val : String) : self
- #set!(tag : PosTag) : self
- #space_before?(prev : Nil) : Bool
- #space_before?(prev : MtNode)
- #starts_with?(key : String | Char)
- #succ : MtNode
- #succ=(succ : MtNode)
- #succ? : MtNode | Nil
- #succ?(&)
- #tag : PosTag
- #tag=(tag : PosTag)
- #to_mtl(io : IO)
- #to_txt(io : IO)
- #val : String
- #val=(val : String)
- #vcompl?
Macro Detail
Instance Method Detail
abstract
def inspect(io : IO)
#
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>