Sha256: a301049aebed577291fb10f78e8c2acc86b7e152cac5302e4bdab220d01e42e3

Contents?: true

Size: 243 Bytes

Versions: 24

Compression:

Stored size: 243 Bytes

Contents

# Ordering with :nulls_last, :nulls_first options
module Arel
  module OrderPredications

    def asc(nulls=nil)
      Nodes::Ascending.new self, nulls
    end

    def desc(nulls=nil)
      Nodes::Descending.new self, nulls
    end

  end
end

Version data entries

24 entries across 24 versions & 2 rubygems

Version Path
arel-extensions-8.0.2 ext/arel/order_predications.rb
arel-extensions-8.0.1 ext/arel/order_predications.rb
arel-extensions-8.0.0 ext/arel/order_predications.rb
arel-extensions-7.0.3 ext/arel/order_predications.rb
arel-extensions-7.0.2 ext/arel/order_predications.rb
arel-extensions-7.0.1 ext/arel/order_predications.rb
arel-extensions-7.0.0 ext/arel/order_predications.rb
arel-extensions-6.1.0 ext/arel/order_predications.rb
arel-extensions-6.1.0.rc2 ext/arel/order_predications.rb
arel-extensions-6.1.0.rc1 ext/arel/order_predications.rb
arel-extensions-6.0.0.9 ext/arel/order_predications.rb
arel-extensions-6.0.0.8 ext/arel/order_predications.rb
arel-extensions-6.0.0.6 ext/arel/order_predications.rb
activerecord-sort-6.0.0.2 ext/arel/order_predications.rb
activerecord-sort-6.0.0.1 ext/arel/order_predications.rb
activerecord-sort-6.0.0 ext/arel/order_predications.rb
activerecord-sort-5.2.0 ext/arel/order_predications.rb
activerecord-sort-5.1.0 ext/arel/order_predications.rb
activerecord-sort-5.0.0.1 ext/arel/order_predications.rb
activerecord-sort-5.0.0 ext/arel/order_predications.rb