Class/Module Index [+]

Quicksearch

Sequel::Plugins::Tree::InstanceMethods

Public Instance Methods

ancestors() click to toggle source

Returns list of ancestors, starting from parent until root.

subchild1.ancestors # => [child1, root]
# File lib/sequel/plugins/tree.rb, line 85
def ancestors
  node, nodes = self, []
  nodes << node = node.parent while node.parent
  nodes
end
descendants() click to toggle source

Returns list of ancestors, starting from parent until root.

subchild1.ancestors # => [child1, root]
# File lib/sequel/plugins/tree.rb, line 94
def descendants
  nodes = children.dup
  nodes.each{|child| nodes.concat(child.descendants)}
  nodes 
end
root() click to toggle source

Returns the root node of the tree that this node descends from. This node is returned if it is a root node itself.

# File lib/sequel/plugins/tree.rb, line 102
def root
  ancestors.last || self
end
root?() click to toggle source

Returns true if this is a root node, false otherwise.

# File lib/sequel/plugins/tree.rb, line 107
def root?
  !new? && self[model.parent_column].nil?
end
self_and_siblings() click to toggle source

Returns all siblings and a reference to the current node.

subchild1.self_and_siblings # => [subchild1, subchild2]
# File lib/sequel/plugins/tree.rb, line 114
def self_and_siblings
  parent ? parent.children : model.roots
end
siblings() click to toggle source

Returns all siblings of the current node.

subchild1.siblings # => [subchild2]
# File lib/sequel/plugins/tree.rb, line 121
def siblings
  self_and_siblings - [self]
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.