Method: Bmg::Relation::InMemory#_count

Defined in:
lib/bmg/relation/in_memory.rb

#_countObject



19
20
21
22
23
24
25
26
27
# File 'lib/bmg/relation/in_memory.rb', line 19

def _count
  if operand.respond_to?(:count)
    operand.count
  elsif operand.respond_to?(:size)
    operand.size
  else
    super
  end
end