File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -13,24 +13,24 @@ 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 >
26
26
27
27
### Extended Interface for ` LazyNode `
28
28
29
29
```
30
- depth(node) → Int
31
- next(node) → typeof(node)
32
- prev(node) → typeof(node)
33
- parent(node) → typeof(node)
30
+ depth(node) → Int
31
+ next(node) → typeof(node)
32
+ prev(node) → typeof(node)
33
+ parent(node) → typeof(node)
34
34
```
35
35
36
36
<br ><br >
You can’t perform that action at this time.
0 commit comments