| Author |
[Q] OrderedCollection from: to: ?
|
|
| Günther Schmidt 2005-06-06, 8:58 pm |
| Hi,
is there some sort of convenience method to get elements from position x
upTo: position y?
Günther
| |
| Christopher J. Demers 2005-06-06, 8:58 pm |
| "Günther Schmidt" <gue.schmidt@web.de> wrote in message
news:d82a02$jbe$05$1@news.t-online.com...
> Hi,
>
> is there some sort of convenience method to get elements from position x
> upTo: position y?
Sure, try,
oc copyFrom: x to: y.
Chris
| |
| Michel Bany 2005-06-06, 8:58 pm |
| Günther Schmidt a écrit :
> is there some sort of convenience method to get elements from position
> x upTo: position y?
>
Sure, #copyFrom:to:
| |
| Michel Bany 2005-06-06, 8:58 pm |
| Günther Schmidt a écrit :
> is there some sort of convenience method to get elements from position
> x upTo: position y?
>
Sure, #copyFrom:to:
| |
| Günther Schmidt 2005-06-06, 8:58 pm |
| Thanks!
|
|
|
|