Community
Participate
Working Groups
In RBD's RUILib we had a sort function to sort the elements of an array. For EDT I moved it to SysLib, but it really belongs as a function on arrays (in EglList). OLD (in eglx.lang.SysLib) ------------------------- static function sort(array any[] in, sortFunction SortFunction); Delegate SortFunction(a any in, b any in) returns (int) end NEW (in egl.lang.EglList) ------------------------- function sort(sortFunction SortFunction); Delegate SortFunction(a any in, b any in) returns (int) end I'll change the eglar and update the Java runtime too.
Done.
changing to Enhancement, as this isn't really a defect.
Closing.