Yaml.Node – yaml-0.1 Reference Manual
Packages
yaml-0.1
Yaml
Node
data_mapping_pairs_end
data_mapping_pairs_start
data_mapping_pairs_top
data_mapping_style
data_scalar_length
data_scalar_style
data_scalar_value
data_sequence_items_end
data_sequence_items_start
data_sequence_items_top
end_mark
start_mark
style
tag
type
Node
Object Hierarchy:
Description:
[
CCode
( cname =
"yaml_node_t"
, has_destroy_function =
false
, has_type_id =
false
) ]
public
struct
Node
The node structure.
Namespace:
Yaml
Package:
yaml-0.1
Content:
Fields:
public
NodeType
type
The node type.
public
string
tag
The node tag.
public
string
data_scalar_value
The scalar value.
public
size_t
data_scalar_length
The length of the scalar value.
public
ScalarStyle
data_scalar_style
The scalar style.
public
NodeItem
?
data_sequence_items_start
The beginning of the stack of sequence items.
public
NodeItem
?
data_sequence_items_end
The end of the stack of sequence items.
public
NodeItem
?
data_sequence_items_top
The top of the stack of sequence items.
public
SequenceStyle
style
The sequence style.
public
NodePair
?
data_mapping_pairs_start
The beginning of the stack of mapping pairs (key, value).
public
NodePair
?
data_mapping_pairs_end
The end of the stack of mapping pairs (key, value).
public
NodePair
?
data_mapping_pairs_top
The top of the stack of mapping pairs (key, value).
public
MappingStyle
data_mapping_style
The mapping style.
public
Mark
start_mark
The beginning of the node.
public
Mark
end_mark
The end of the node.