module Axiom::Relation::Operation::Offset::Methods

Public Instance Methods

drop(offset) click to toggle source

Return a relation with n tuples

@example

offset_relation = relation.drop(5)

@param [Integer] offset

the offset of the relation to drop

@return [Offset]

@api public

# File lib/axiom/relation/operation/offset.rb, line 163
def drop(offset)
  Offset.new(self, offset)
end