Re: reversed and ofSize:

"[email protected]" <[email protected]>
Newsgroups gmane.comp.lang.smalltalk.gnu.general
Message-ID <[email protected]>
reversed
	"Answer a copy of the receiver with element order reversed."
	"Example: 'frog' reversed"

	| n result src |
	n := self size.
	result := self species ofSize: n.
	src := n + 1.
	1 to: n do: [:i | result at: i put: (self at: (src := src - 1))].
	^ result

However this method is absent in GNU Smalltalk.

It's perhaps a Squeak specific addition.

Is there any interest in adding ofSize: and reversed to the GNU Smalltalk kernel ?

----- Op 10 jan 2021 om 20:36 schreef stes [email protected]:

> Hi,
> 
> OrderedCollection, or its parent, SequencableCollection in Squeak 4.6 has
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.