class ToknInternal::RPNode

A node within a RangePartition tree

Attributes

children[RW]
id[RW]
set[RW]

Public Class Methods

new(id, set, children) click to toggle source
# File lib/tokn/range_partition.rb, line 222
def initialize(id, set, children)
  @id = id
  @set = set
  @children = children
end

Public Instance Methods

inspect() click to toggle source
# File lib/tokn/range_partition.rb, line 228
def inspect
  return 'N' + id.to_s
end