class FZip::Adapter

Public Instance Methods

branch?(node) click to toggle source

Can the node have children

Returns true if the node can have even if it currently doesn’t.

# File lib/fzip/adapter.rb, line 6
def branch?(node)
end
children(node) click to toggle source

The children of a node

Return an array, or an object that responds to first, drop and +

# File lib/fzip/adapter.rb, line 12
def children(node)
end
make_node(node, children) click to toggle source

Given a node and an array of children, returns a new branch node of the same type with the supplied children.

# File lib/fzip/adapter.rb, line 17
def make_node(node, children)
end