class UnionFindTree::UnionFind::ParArray

Public Instance Methods

[](key) click to toggle source
Calls superclass method
# File lib/union_find_tree.rb, line 7
def [] key
  self[key] = key if super(key).nil?
  super(key)
end