first?()
Return true if this object is the first in the list.
# File activerecord/lib/active_record/acts/list.rb, line 144 def first? return false unless in_list? self.send(position_column) == 1 end