find_all_template(tuple)
public
Finds all tuples in the TupleBag which when treated as templates, match
tuple and are alive.
# File lib/rinda/tuplespace.rb, line 371
def find_all_template(tuple)
@enum.find_all do |template|
template.alive? && template.match(tuple)
end
end