Class: Stupidedi::Zipper::MemoizedCursor
Instance Attribute Summary collapse
Querying the Tree Location
collapse
Traversing the Tree
collapse
Editing the Tree
collapse
Instance Method Summary
collapse
#append_child, #between, #child, #children, #dangle, #depth, #descendant, #down, #first?, #flatten, #insert_left, #insert_right, #last?, #prepend_child, #root
Constructor Details
#initialize(node, path, parent) ⇒ MemoizedCursor
Returns a new instance of MemoizedCursor.
17
18
19
20
|
# File 'lib/stupidedi/zipper/memoized_cursor.rb', line 17
def initialize(node, path, parent)
@node, @path, @parent =
node, path, parent
end
|
Instance Attribute Details
#node ⇒ #leaf?, ...
8
9
10
|
# File 'lib/stupidedi/zipper/memoized_cursor.rb', line 8
def node
@node
end
|
11
12
13
|
# File 'lib/stupidedi/zipper/memoized_cursor.rb', line 11
def path
@path
end
|
Instance Method Details
89
90
91
92
|
# File 'lib/stupidedi/zipper/memoized_cursor.rb', line 89
def append(node)
EditedCursor.new(node,
Hole.new(@node.cons(@path.left), @path.parent, @path.right), @parent)
end
|
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
# File 'lib/stupidedi/zipper/memoized_cursor.rb', line 106
def delete
if not last?
head, *tail = @path.right
EditedCursor.new(head,
Hole.new(@path.left, @path.parent, tail), @parent)
elsif not first?
head, *tail = @path.left
EditedCursor.new(head,
Hole.new(tail, @path.parent, @path.right), @parent)
else
parent =
@parent.node.copy(:children =>
@path.left.reverse.concat(@path.right))
EditedCursor.new(parent, @path.parent, @parent.parent).dangle
end
end
|
74
75
76
|
# File 'lib/stupidedi/zipper/memoized_cursor.rb', line 74
def first
@parent.down
end
|
79
80
81
82
83
|
# File 'lib/stupidedi/zipper/memoized_cursor.rb', line 79
def last
current = self
current = current.next until current.last?
current
end
|
#leaf? ⇒ Boolean
True if the node has no children
26
27
28
|
# File 'lib/stupidedi/zipper/memoized_cursor.rb', line 26
def leaf?
@node.leaf? or @node.children.empty?
end
|
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# File 'lib/stupidedi/zipper/memoized_cursor.rb', line 44
def next
@__next ||= begin
if last?
raise Exceptions::ZipperError,
"cannot move to next after last node"
end
head, *tail = @path.right
MemoizedCursor.new(head,
Hole.new(@node.cons(@path.left), @path.parent, tail), @parent)
end
end
|
95
96
97
98
|
# File 'lib/stupidedi/zipper/memoized_cursor.rb', line 95
def prepend
EditedCursor.new(node,
Hole.new(@path.left, @path.parent, @node.cons(@path.right)), @parent)
end
|
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# File 'lib/stupidedi/zipper/memoized_cursor.rb', line 59
def prev
@__prev ||= begin
if first?
raise Exceptions::ZipperError,
"cannot move to prev before first node"
end
head, *tail = @path.left
MemoizedCursor.new(head,
Hole.new(tail, @path.parent, @node.cons(@path.right)), @parent)
end
end
|
101
102
103
|
# File 'lib/stupidedi/zipper/memoized_cursor.rb', line 101
def replace(node)
EditedCursor.new(node, @path, @parent)
end
|
#root? ⇒ Boolean
True if the node has no parent
31
32
33
|
# File 'lib/stupidedi/zipper/memoized_cursor.rb', line 31
def root?
false
end
|
39
40
41
|
# File 'lib/stupidedi/zipper/memoized_cursor.rb', line 39
def up
@parent
end
|