class Twobook::AccountQuery::OrQuery

Attributes

first[R]
second[R]

Public Class Methods

new(first, second) click to toggle source
# File lib/twobook/account_query.rb, line 194
def initialize(first, second)
  @first = first
  @second = second
end

Public Instance Methods

none?() click to toggle source
# File lib/twobook/account_query.rb, line 199
def none?
  @first.none? && @second.none?
end
on(array) click to toggle source
# File lib/twobook/account_query.rb, line 203
def on(array)
  @first.on(array) | @second.on(array)
end