Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 618 by damien.c...(a)gmail.com: [Glamour] Sorting of lists should
be made easier
http://code.google.com/p/moose-technology/issues/detail?id=618
Currently, a user has to do the following to sort a list:
a list
display: [:x | ((... x ...) ...) sorted: [...]]
or
a list
display: [:x | ((... x ...) ...) asSortedCollection]
All these parenthesis make the code a bit hard to read. I propose
a list
display: [:x | (... x ...) ...];
sorted: [...]
or
a list
display: [:x | (... x ...) ...];
sorted
which removes a level of parenthesis and simplifies indentation.