module Arel::OrderPredications

def asc

def asc
  Nodes::Ascending.new self
end

def desc

def desc
  Nodes::Descending.new self
end