class Waterfall::Base

Public Instance Methods

waterfall?(obj) click to toggle source
# File lib/waterfall/predicates/base.rb, line 4
def waterfall?(obj)
  obj.respond_to?(:is_waterfall?) && obj.is_waterfall?
end
yield_args() click to toggle source
# File lib/waterfall/predicates/base.rb, line 8
def yield_args
  [@root.outflow, @root]
end