class Arel::Nodes::Descending

Public Instance Methods

ascending?() click to toggle source
# File lib/arel/nodes/descending.rb, line 14
def ascending?
  false
end
descending?() click to toggle source
# File lib/arel/nodes/descending.rb, line 18
def descending?
  true
end
direction() click to toggle source
# File lib/arel/nodes/descending.rb, line 10
def direction
  :desc
end
reverse() click to toggle source
# File lib/arel/nodes/descending.rb, line 6
def reverse
  Ascending.new(expr)
end