public Method

TSort.tsort_each_child(node) { |child| ... }

Should be implemented by a extended class.

#tsort_each_child is used to iterate for child nodes of node.

Source Code

# File tsort.rb, line 240
def tsort_each_child(node) # :yields: child
  raise NotImplementedError.new
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.