Class: Stupidedi::Zipper::RootCursor
- Inherits:
-
AbstractCursor
- Object
- AbstractCursor
- Stupidedi::Zipper::RootCursor
- Defined in:
- lib/stupidedi/zipper/root_cursor.rb
Instance Attribute Summary collapse
- #node ⇒ AbstractNode readonly
- #path ⇒ AbstractPath readonly
Query the Tree Location collapse
-
#depth ⇒ Integer
Distance from the root node.
- #first? ⇒ Object
- #last? ⇒ Object
- #leaf? ⇒ Boolean
- #root? ⇒ Boolean
Traversing the Tree collapse
-
#first ⇒ AbstractCursor
Navigate to the first (leftmost) sibling node.
-
#last ⇒ AbstractCursor
Navigate to the last (rightmost) sibling node.
-
#next ⇒ AbstractCursor, void
Navigate to the next (rightward) sibling node.
-
#prev ⇒ AbstractCursor, void
Navigate to the previous (leftward) sibling node.
-
#root ⇒ RootCursor
Navigate to the root node.
-
#up ⇒ AbstractCursor, void
Navigate to the parent node.
Editing the Tree collapse
-
#append(node) ⇒ EditedCursor, void
Insert a new sibling node after (to the right of) the current node, and navigate to the new sibling node.
-
#delete ⇒ EditedCursor, void
Remove the current node, and navigate to the next (rightward) node if one exists.
-
#prepend(node) ⇒ EditedCursor, void
Insert a new sibling node before (to the left of) the current node, and navigate to the new sibling node.
-
#replace(node) ⇒ AbstractCursor, RootCursor
Replace the current node with the given node.
Instance Method Summary collapse
-
#initialize(node) ⇒ RootCursor
constructor
A new instance of RootCursor.
Methods inherited from AbstractCursor
#append_child, #between, #child, #children, #dangle, #descendant, #down, #flatten, #insert_left, #insert_right, #prepend_child
Constructor Details
#initialize(node) ⇒ RootCursor
Returns a new instance of RootCursor.
16 17 18 19 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 16 def initialize(node) @node, @path = node, Root end |
Instance Attribute Details
#node ⇒ AbstractNode (readonly)
11 12 13 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 11 def node @node end |
#path ⇒ AbstractPath (readonly)
14 15 16 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 14 def path @path end |
Instance Method Details
#append(node) ⇒ EditedCursor, void
Insert a new sibling node after (to the right of) the current node, and navigate to the new sibling node
94 95 96 97 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 94 def append(node) raise Exceptions::ZipperError, "root node has no siblings" end |
#delete ⇒ EditedCursor, void
Remove the current node, and navigate to the next (rightward) node if one exists. Otherwise, navigate to the previous (leftward) node if one exists. Otherwise, create a placeholder where the next sibling node will be created.
114 115 116 117 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 114 def delete raise Exceptions::ZipperError, "cannot delete root node" end |
#depth ⇒ Integer
Distance from the root node
25 26 27 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 25 def depth 0 end |
#first ⇒ AbstractCursor
Navigate to the first (leftmost) sibling node
53 54 55 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 53 def first self end |
#first? ⇒ Object
30 31 32 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 30 def first? true end |
#last ⇒ AbstractCursor
Navigate to the last (rightmost) sibling node
58 59 60 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 58 def last self end |
#last? ⇒ Object
35 36 37 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 35 def last? true end |
#leaf? ⇒ Boolean
40 41 42 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 40 def leaf? @node.leaf? or @node.children.empty? end |
#next ⇒ AbstractCursor, void
Navigate to the next (rightward) sibling node
64 65 66 67 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 64 def next raise Exceptions::ZipperError, "root node has no siblings" end |
#prepend(node) ⇒ EditedCursor, void
Insert a new sibling node before (to the left of) the current node, and navigate to the new sibling node
101 102 103 104 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 101 def prepend(node) raise Exceptions::ZipperError, "root node has no siblings" end |
#prev ⇒ AbstractCursor, void
Navigate to the previous (leftward) sibling node
71 72 73 74 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 71 def prev raise Exceptions::ZipperError, "root node has no siblings" end |
#replace(node) ⇒ AbstractCursor, RootCursor
Replace the current node with the given node
108 109 110 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 108 def replace(node) RootCursor.new(node) end |
#root ⇒ RootCursor
Navigate to the root node
78 79 80 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 78 def root self end |
#root? ⇒ Boolean
45 46 47 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 45 def root? true end |
#up ⇒ AbstractCursor, void
Navigate to the parent node
84 85 86 87 |
# File 'lib/stupidedi/zipper/root_cursor.rb', line 84 def up raise Exceptions::ZipperError, "root node has no parent" end |