class DaedalSL::AndFilter
Public Class Methods
new(parent, options)
click to toggle source
Calls superclass method
# File lib/daedal-sl/and_filter.rb, line 4 def initialize(parent, options) @query_type = Daedal::Filters::AndFilter super end
Public Instance Methods
filter() { || ... }
click to toggle source
# File lib/daedal-sl/and_filter.rb, line 9 def filter if (result = yield) @base.filters << result end end