File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ This package offers fast data structures for reading and writing XML files with
13
13
### ` Node ` /` LazyNode ` Interface:
14
14
15
15
```
16
- nodetype(node) → ` XML.NodeType` (an enum type):
17
- tag(node) → ` String` or ` Nothing`
18
- attributes(node) → ` Dict{String,String}` or ` Nothing`
19
- value(node) → ` String` or ` Nothing`
20
- children(node) → ` Vector{typeof(node)}`
21
- is_simple(node) → ` Bool` (whether node is simple .e.g. ` <tag>item</tag>` )
22
- simplevalue(node) → e.g. ` "item"` from ` <tag>item</tag>` )
16
+ nodetype(node) → XML.NodeType (an enum type):
17
+ tag(node) → String or Nothing
18
+ attributes(node) → Dict{String,String} or Nothing
19
+ value(node) → String or Nothing
20
+ children(node) → Vector{typeof(node)}
21
+ is_simple(node) → Bool (whether node is simple .e.g. <tag>item</tag>)
22
+ simplevalue(node) → e.g. "item" from <tag>item</tag>)
23
23
```
24
24
25
25
<br >
You can’t perform that action at this time.
0 commit comments