Sha256: 2ecedd17fd2285cc1dde517fde4003265f60b49abc3226f32e50e9ec1b17e4da
Contents?: true
Size: 771 Bytes
Versions: 14
Compression:
Stored size: 771 Bytes
Contents
module Bmg module Relation class InMemory include Relation def initialize(type, operand) @operand = operand @type = type end attr_accessor :type attr_reader :operand public def each(&bl) @operand.each(&bl) end def _count if operand.respond_to?(:count) operand.count elsif operand.respond_to?(:size) operand.size else super end end def to_ast [ :in_memory, operand ] end def to_s "(in_memory ...)" end def inspect "(in_memory #{operand.inspect})" end end # class InMemory end # module Relation end # module Bmg require_relative 'in_memory/mutable'
Version data entries
14 entries across 14 versions & 1 rubygems