module Axiom::Relation::Operation::Deletion::Methods

Public Instance Methods

delete(other) click to toggle source

Return a relation that represents a deletion from a relation

@example

deletion = relation.delete(other)

@param [Enumerable] other

@return [Deletion]

@api public

# File lib/axiom/relation/operation/deletion.rb, line 34
def delete(other)
  Deletion.new(self, coerce(other))
end