class Twobook::AccountQuery::AndQuery
Attributes
first[R]
second[R]
Public Class Methods
new(first, second)
click to toggle source
# File lib/twobook/account_query.rb, line 177 def initialize(first, second) @first = first @second = second end
Public Instance Methods
none?()
click to toggle source
# File lib/twobook/account_query.rb, line 186 def none? @first.none? || @second.none? end
on(array)
click to toggle source
# File lib/twobook/account_query.rb, line 182 def on(array) @first.on(array) & @second.on(array) end