class UnionFindTree::UnionFind::SizeArray
Public Instance Methods
[](key)
click to toggle source
Calls superclass method
# File lib/union_find_tree.rb, line 14 def [] key self[key] = 1 if super(key).nil? super(key) end