Changes http://wiki.axiom-developer.org/335SortDropsListElements/diff --
return this sorted result in the argument as one would expect? ++added: + + +From Waldek Sat May 26 22:11:00 -0500 2007 +From: Waldek +Date: May 26, 2007 22:11:00 -0500 2007 +Subject: Cleaning issues +Message-ID: <[EMAIL PROTECTED]> + +I have looked at older issues in Issue Tracker and it seems that +there are significant number of issues which are just users not +understanding what Axiom is doing and expecting different result. + +For example 335 sort! drops list elements is just example of +linked list. Something like:: + + (1) -> bb := [3, 4, 1, 2] + + (1) [3,4,1,2] + Type: List PositiveInteger + (2) -> bs := sort! bb + + (2) [1,2,3,4] + Type: List PositiveInteger + (3) -> bb + + (3) [3,4] + Type: List PositiveInteger + (4) -> bs + + (4) [1,2,3,4] + Type: List PositiveInteger + (5) -> bb.1 := 7 + + (5) 7 + Type: PositiveInteger + (6) -> bs + + (6) [1,2,7,4] + Type: List PositiveInteger + (7) -> + +should be, or maybe already is in the tutorial, as an illustration +that what was a first element of the list after reorganization +may point inside. + -- forwarded from http://wiki.axiom-developer.org/[EMAIL PROTECTED]
