class Boleite::Serializer::Node(AttachedData)
Defined in:
boleite/serializer.crConstructors
Instance Method Summary
- #data
- #each(&)
- #each_child(&)
- #get_child(key : String)
- #has?(k : String)
- #has?(i : Int)
- #key
- #marshal(index : Int, string : String)
- #marshal(key : String, string : String)
- #marshal(index : Int, int : Int)
- #marshal(key : String, int : Int)
- #marshal(index : Int, float : Float)
- #marshal(key : String, float : Float)
- #marshal(index : Int, bool : Bool)
- #marshal(key : String, bool : Bool)
- #marshal(index : Int, obj)
- #marshal(key : String, obj)
- #unmarshal(index : Int, type)
- #unmarshal(key : String, type)
- #unmarshal?(id, type, default)
- #unmarshal_bool(index : Int)
- #unmarshal_bool(key : String)
- #unmarshal_bool?(id, default)
- #unmarshal_float(index : Int)
- #unmarshal_float(key : String)
- #unmarshal_float?(id, default)
- #unmarshal_int(index : Int)
- #unmarshal_int(key : String)
- #unmarshal_int?(id, default)
- #unmarshal_string(index : Int)
- #unmarshal_string(key : String)
- #unmarshal_string?(id, default)
- #value
- #value=(value)
Instance methods inherited from class Boleite::SerializerBaseNode
to_yaml(io : IO)
to_yaml,
value
value
Constructor Detail
def self.new(data : AttachedData, value : SerializableType, key : Int32 | String | Nil)
#