Method: Babik::QuerySet::SetOperations#difference
- Defined in:
- lib/babik/queryset/mixins/set_operations.rb
#difference(other_queryset) ⇒ Babik::QuerySet::Except
Difference (minus) operation
11 12 13 |
# File 'lib/babik/queryset/mixins/set_operations.rb', line 11 def difference(other_queryset) Babik::QuerySet::Except.new(self.model, self, other_queryset) end |