sort('Name'); // default ASC sorting * @example $list = $list->sort('Name DESC'); // DESC sorting * @example $list = $list->sort('Name', 'ASC'); * @example $list = $list->sort(array('Name'=>'ASC,'Age'=>'DESC')); */ public function sort(); /** * Return a new instance of this list based on reversing the current sort. * * @return SS_Sortable * @example $list = $list->reverse(); */ public function reverse(); }