SequenceableCollection.st
author Claus Gittinger <cg@exept.de>
Wed, 03 Apr 2013 20:53:03 +0200
changeset 15054 1667e3fe9e8b
parent 14947 e9a0049c0ef1
child 15058 ad77c7e43ebd
child 18040 a11a12546f23
permissions -rw-r--r--
class: Autoload changed: #autoload when autoloading a class, make sure any extensions of the classes package are also loaded. If a projectDefinition is present, let it load them; otherwise, look for a file named \"extensions.st\" where the autoloaded class is loaded from. This helps with saved code, which has not yet been packaged correctly.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
    12
"{ Package: 'stx:libbasic' }"
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
    13
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    14
Collection subclass:#SequenceableCollection
6183
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
    15
	instanceVariableNames:''
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
    16
	classVariableNames:'MissingClassInLiteralArrayErrorSignal'
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
    17
	poolDictionaries:''
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
    18
	category:'Collections-Abstract'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    19
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    20
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
    21
!SequenceableCollection class methodsFor:'documentation'!
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    22
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    23
copyright
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    24
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    25
 COPYRIGHT (c) 1989 by Claus Gittinger
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
    26
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    27
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    28
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    29
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    31
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    32
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    33
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    34
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    35
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    36
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    37
documentation
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    38
"
11272
72f17bc1338e +randomShuffle
Claus Gittinger <cg@exept.de>
parents: 11264
diff changeset
    39
    SequenceableCollections have ordered elements which can be accessed via a numeric index.
72f17bc1338e +randomShuffle
Claus Gittinger <cg@exept.de>
parents: 11264
diff changeset
    40
    SequenceableCollection is an abstract class - there are no direct instances of it in the system.
1385
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    41
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    42
    The methods found here assume that implementations of (at least)
11272
72f17bc1338e +randomShuffle
Claus Gittinger <cg@exept.de>
parents: 11264
diff changeset
    43
    #at:/#at:put: are implemented (which are always found in Object for indexable objects).
72f17bc1338e +randomShuffle
Claus Gittinger <cg@exept.de>
parents: 11264
diff changeset
    44
72f17bc1338e +randomShuffle
Claus Gittinger <cg@exept.de>
parents: 11264
diff changeset
    45
    For performance, some subclasses redefine more methods, 
72f17bc1338e +randomShuffle
Claus Gittinger <cg@exept.de>
parents: 11264
diff changeset
    46
    knowing the detail of how elements are stored.
72f17bc1338e +randomShuffle
Claus Gittinger <cg@exept.de>
parents: 11264
diff changeset
    47
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
    48
    Especially, bulk data manipulation (i.e. #replaceFrom:to:with:startingAt:)
11272
72f17bc1338e +randomShuffle
Claus Gittinger <cg@exept.de>
parents: 11264
diff changeset
    49
    and search methods (i.e. #indexOf:startingAt:) are good candidates for this kind of tuneup.
72f17bc1338e +randomShuffle
Claus Gittinger <cg@exept.de>
parents: 11264
diff changeset
    50
72f17bc1338e +randomShuffle
Claus Gittinger <cg@exept.de>
parents: 11264
diff changeset
    51
    The most heavily used SequentialCollections in the system are probably Array, String, ByteArray
72f17bc1338e +randomShuffle
Claus Gittinger <cg@exept.de>
parents: 11264
diff changeset
    52
    OrderedCollection and SortedCollection.
1289
3abde2c376de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
    53
3abde2c376de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
    54
    [author:]
11272
72f17bc1338e +randomShuffle
Claus Gittinger <cg@exept.de>
parents: 11264
diff changeset
    55
        Claus Gittinger
1385
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    56
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    57
    [see also:]
11272
72f17bc1338e +randomShuffle
Claus Gittinger <cg@exept.de>
parents: 11264
diff changeset
    58
        Array ByteArray OrderedCollection SortedCollection 
72f17bc1338e +randomShuffle
Claus Gittinger <cg@exept.de>
parents: 11264
diff changeset
    59
        CharacterArray String
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    60
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    61
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    62
4197
8ae90a572914 raise a special signal, when a literalencodings class
Claus Gittinger <cg@exept.de>
parents: 4154
diff changeset
    63
!SequenceableCollection class methodsFor:'initialization'!
8ae90a572914 raise a special signal, when a literalencodings class
Claus Gittinger <cg@exept.de>
parents: 4154
diff changeset
    64
8ae90a572914 raise a special signal, when a literalencodings class
Claus Gittinger <cg@exept.de>
parents: 4154
diff changeset
    65
initialize
8ae90a572914 raise a special signal, when a literalencodings class
Claus Gittinger <cg@exept.de>
parents: 4154
diff changeset
    66
    MissingClassInLiteralArrayErrorSignal isNil ifTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
    67
	MissingClassInLiteralArrayErrorSignal := Error newSignalMayProceed:true.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
    68
	MissingClassInLiteralArrayErrorSignal nameClass:self message:#missingClassInLiteralArrayErrorSignal.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
    69
	MissingClassInLiteralArrayErrorSignal notifierString:'Missing class in literal encoding'.
4197
8ae90a572914 raise a special signal, when a literalencodings class
Claus Gittinger <cg@exept.de>
parents: 4154
diff changeset
    70
    ]
8ae90a572914 raise a special signal, when a literalencodings class
Claus Gittinger <cg@exept.de>
parents: 4154
diff changeset
    71
8ae90a572914 raise a special signal, when a literalencodings class
Claus Gittinger <cg@exept.de>
parents: 4154
diff changeset
    72
    "Created: / 18.5.1999 / 14:49:51 / cg"
8ae90a572914 raise a special signal, when a literalencodings class
Claus Gittinger <cg@exept.de>
parents: 4154
diff changeset
    73
! !
8ae90a572914 raise a special signal, when a literalencodings class
Claus Gittinger <cg@exept.de>
parents: 4154
diff changeset
    74
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
    75
!SequenceableCollection class methodsFor:'instance creation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    76
4807
Claus Gittinger <cg@exept.de>
parents: 4788
diff changeset
    77
decodeFromLiteralArray:anArray
Claus Gittinger <cg@exept.de>
parents: 4788
diff changeset
    78
    "create & return a new instance from information encoded in anArray.
8831
918f291920c2 Speed up #decodeFromLiteralArray:
Stefan Vogel <sv@exept.de>
parents: 8799
diff changeset
    79
     Redefined for faster creation."
918f291920c2 Speed up #decodeFromLiteralArray:
Stefan Vogel <sv@exept.de>
parents: 8799
diff changeset
    80
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
    81
    |collection
8831
918f291920c2 Speed up #decodeFromLiteralArray:
Stefan Vogel <sv@exept.de>
parents: 8799
diff changeset
    82
     sz "{ Class: SmallInteger }"|
918f291920c2 Speed up #decodeFromLiteralArray:
Stefan Vogel <sv@exept.de>
parents: 8799
diff changeset
    83
918f291920c2 Speed up #decodeFromLiteralArray:
Stefan Vogel <sv@exept.de>
parents: 8799
diff changeset
    84
    sz := anArray size.
918f291920c2 Speed up #decodeFromLiteralArray:
Stefan Vogel <sv@exept.de>
parents: 8799
diff changeset
    85
    collection := self withSize:sz-1.
918f291920c2 Speed up #decodeFromLiteralArray:
Stefan Vogel <sv@exept.de>
parents: 8799
diff changeset
    86
    2 to:sz do:[:idx| collection at:idx-1 put:(anArray at:idx) decodeAsLiteralArray].
918f291920c2 Speed up #decodeFromLiteralArray:
Stefan Vogel <sv@exept.de>
parents: 8799
diff changeset
    87
    ^ collection
4807
Claus Gittinger <cg@exept.de>
parents: 4788
diff changeset
    88
8797
820ce611f762 comment
Claus Gittinger <cg@exept.de>
parents: 8673
diff changeset
    89
    "
820ce611f762 comment
Claus Gittinger <cg@exept.de>
parents: 8673
diff changeset
    90
     Array
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
    91
	decodeFromLiteralArray:#(Array 1 2 3)
8797
820ce611f762 comment
Claus Gittinger <cg@exept.de>
parents: 8673
diff changeset
    92
    "
4807
Claus Gittinger <cg@exept.de>
parents: 4788
diff changeset
    93
!
Claus Gittinger <cg@exept.de>
parents: 4788
diff changeset
    94
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    95
new:size withAll:element
360
claus
parents: 359
diff changeset
    96
    "return a new collection of size, where all elements are
claus
parents: 359
diff changeset
    97
     initialized to element."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    98
a27a279701f8 Initial revision
claus
parents:
diff changeset
    99
    |newCollection|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   100
a27a279701f8 Initial revision
claus
parents:
diff changeset
   101
    newCollection := self new:size.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   102
    newCollection atAllPut:element.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   103
    ^ newCollection
360
claus
parents: 359
diff changeset
   104
!
claus
parents: 359
diff changeset
   105
4303
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   106
newWithConcatenationOfAll:aCollectionOfCollections
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   107
    "this creates and returns a new collection consisting
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   108
     of the concatenation of all elements of the argument.
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   109
     I.e. it has the same effect as concatenating all elements
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   110
     of the argument using #, ,but is implemented more efficiently,
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   111
     by avoiding repeated garbage allocations.
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   112
     This is an O runtime algorithm, in contrast to the #, loop, which is O*O"
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   113
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   114
    |totalSize newColl idx|
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   115
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   116
    totalSize := aCollectionOfCollections
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   117
			inject:0
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   118
			into:[:sumSoFar :el | sumSoFar + el size].
4303
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   119
    newColl := self new:totalSize.
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   120
    idx := 1.
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   121
    aCollectionOfCollections do:[:el |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   122
	|sz|
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   123
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   124
	sz := el size.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   125
	newColl replaceFrom:idx to:(idx+sz-1) with:el startingAt:1.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   126
	idx := idx + sz
4303
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   127
    ].
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   128
    ^ newColl
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   129
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   130
    "
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   131
     this method optimizes the following (common) operation:
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   132
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   133
	 |s|
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   134
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   135
	 s := ''.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   136
	 #('hello' ' ' 'world' ' ' 'this is ' 'ST/X') do:[:e|
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   137
	    s := s , e.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   138
	 ].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   139
	 s
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   140
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   141
     String
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   142
	newWithConcatenationOfAll:#('hello' ' ' 'world' ' ' 'this is ' 'ST/X')
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   143
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   144
     String
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   145
	newWithConcatenationOfAll:#()
4303
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   146
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   147
     Array
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   148
	newWithConcatenationOfAll:#( (1 2 3 4) (5 6 7 8) (9 10 11 12) )
4303
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   149
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   150
     timing:
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   151
     -------
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   152
     speed-break-even is at around 5 elements for strings;
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   153
     for more elements, #newWithConcatenationOfAll: is much faster.
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   154
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   155
     |arr1 arr2 arr3 t|
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   156
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   157
     arr1 := #('hello' ' ' 'world' ' ' 'this is ' 'ST/X').
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   158
     arr2 := Array new:1000 withAll:'hello'.
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   159
     arr3 := Array new:10000 withAll:'hello'.
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   160
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   161
     (Array with:arr1 with:arr2 with:arr3) with:#(10000 100 10) do:[:arr :cnt |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   162
	 t := Time millisecondsToRun:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   163
	    cnt timesRepeat:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   164
		String
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   165
		    newWithConcatenationOfAll:arr
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   166
	    ]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   167
	 ].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   168
	 Transcript showCR:(arr size printString , ' elements - time for #newWithConcatenationOfAll :' , (t/cnt) asFloat printString , 'mS').
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   169
	 Transcript endEntry.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   170
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   171
	 t := Time millisecondsToRun:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   172
	    cnt timesRepeat:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   173
		 |s|
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   174
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   175
		 s := ''.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   176
		 arr do:[:e|
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   177
		    s := s , e.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   178
		 ].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   179
		 s
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   180
	    ]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   181
	 ].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   182
	 Transcript showCR:(arr size printString , ' elements - time for loop over #, :' , (t/cnt) asFloat printString , 'mS').
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   183
	 Transcript endEntry.
4303
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   184
     ]
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   185
    "
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   186
!
4a2e5a5cb83d added #newWithConcatenationOfAll: for tune concatenation of
Claus Gittinger <cg@exept.de>
parents: 4197
diff changeset
   187
360
claus
parents: 359
diff changeset
   188
withSize:size
claus
parents: 359
diff changeset
   189
    "return a new collection of size.
claus
parents: 359
diff changeset
   190
     For variable size collections, this is different from #new:,
claus
parents: 359
diff changeset
   191
     in that #new: creates an empty collection with preallocated size,
claus
parents: 359
diff changeset
   192
     while #withSize: creates a non empty one."
claus
parents: 359
diff changeset
   193
9162
2052a4f34093 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9106
diff changeset
   194
    ^ (self new:size) grow:size.
360
claus
parents: 359
diff changeset
   195
claus
parents: 359
diff changeset
   196
    "
claus
parents: 359
diff changeset
   197
     (OrderedCollection new:10) inspect.
claus
parents: 359
diff changeset
   198
     (OrderedCollection withSize:10) inspect.
claus
parents: 359
diff changeset
   199
     (Array new:10) inspect.
claus
parents: 359
diff changeset
   200
     (Array withSize:10) inspect.
claus
parents: 359
diff changeset
   201
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   202
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   203
5188
ffe7bdb92f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
   204
!SequenceableCollection class methodsFor:'Signal constants'!
ffe7bdb92f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
   205
ffe7bdb92f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
   206
missingClassInLiteralArrayErrorSignal
ffe7bdb92f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
   207
    ^ MissingClassInLiteralArrayErrorSignal
ffe7bdb92f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
   208
ffe7bdb92f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
   209
    "Created: / 18.5.1999 / 14:50:04 / cg"
ffe7bdb92f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
   210
! !
ffe7bdb92f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
   211
7304
faf85c4f0073 category
Claus Gittinger <cg@exept.de>
parents: 7279
diff changeset
   212
!SequenceableCollection class methodsFor:'instance creation-multiDimensional'!
7255
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   213
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   214
_at:nIndices
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   215
    "this is a synthetic selector, generated by the compiler,
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   216
     if a construct of the form expr[idx...] is parsed.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   217
     I.e.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   218
	Array[n]
7255
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   219
     generates
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   220
	Array _at: n
7255
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   221
    "
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   222
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   223
    ^ self new:nIndices
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   224
!
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   225
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   226
_at:dim1 at:dim2
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   227
    "this is a synthetic selector, generated by the compiler,
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   228
     if a construct of the form expr[idx...] is parsed.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   229
     I.e.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   230
	Array[n,m]
7255
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   231
     generates
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   232
	Array _at:n at:m
7255
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   233
    "
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   234
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   235
    |data|
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   236
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   237
    data := self withSize:(dim1 * dim2).
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   238
    ^ MultiDimensionalArrayAccessor
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   239
	collection:data
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   240
	dimensions:(Array with:dim1 with:dim2)
7255
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   241
!
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   242
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   243
_at:dim1 at:dim2 at:dim3
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   244
    "this is a synthetic selector, generated by the compiler,
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   245
     if a construct of the form expr[idx...] is parsed.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   246
     I.e.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   247
	Array[n,m,o]
7255
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   248
     generates
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   249
	Array _at:n at:m at:o
7255
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   250
    "
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   251
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   252
    |data|
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   253
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   254
    data := self withSize:(dim1 * dim2 * dim3).
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   255
    ^ MultiDimensionalArrayAccessor
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   256
	collection:data
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   257
	dimensions:(Array with:dim1 with:dim2 with:dim3)
7255
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   258
! !
db63f228cde7 matrix support
Claus Gittinger <cg@exept.de>
parents: 7253
diff changeset
   259
10479
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   260
!SequenceableCollection class methodsFor:'instance creation-streaming'!
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   261
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   262
streamContents:blockWithArg
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   263
    "create a write-stream on an instance of the receiver-class,
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   264
     evaluate blockWithArg, passing that stream,
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   265
     extract and return the streams contents."
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   266
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   267
    |stream|
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   268
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   269
    stream := self writeStream.
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   270
    blockWithArg value:stream.
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   271
    ^ stream contents
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   272
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   273
    "
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   274
     |rslt|
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   275
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   276
     rslt := String streamContents:[:s | s nextPutAll:'hello'; space; nextPutAll:'world']
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   277
    "
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   278
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   279
    "Modified: / 29-03-2007 / 15:20:20 / cg"
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   280
!
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   281
10590
6f1ae91a406e streamContents with limit
Claus Gittinger <cg@exept.de>
parents: 10479
diff changeset
   282
streamContents:blockWithArg limitedTo:limit
6f1ae91a406e streamContents with limit
Claus Gittinger <cg@exept.de>
parents: 10479
diff changeset
   283
    "create a limited write-stream on an instance of the receiver-class,
6f1ae91a406e streamContents with limit
Claus Gittinger <cg@exept.de>
parents: 10479
diff changeset
   284
     evaluate blockWithArg, passing that stream,
6f1ae91a406e streamContents with limit
Claus Gittinger <cg@exept.de>
parents: 10479
diff changeset
   285
     extract and return the streams contents (possibly truncated)."
6f1ae91a406e streamContents with limit
Claus Gittinger <cg@exept.de>
parents: 10479
diff changeset
   286
6f1ae91a406e streamContents with limit
Claus Gittinger <cg@exept.de>
parents: 10479
diff changeset
   287
    |stream|
6f1ae91a406e streamContents with limit
Claus Gittinger <cg@exept.de>
parents: 10479
diff changeset
   288
6f1ae91a406e streamContents with limit
Claus Gittinger <cg@exept.de>
parents: 10479
diff changeset
   289
    stream := self writeStream.
6f1ae91a406e streamContents with limit
Claus Gittinger <cg@exept.de>
parents: 10479
diff changeset
   290
    stream writeLimit:limit.
6f1ae91a406e streamContents with limit
Claus Gittinger <cg@exept.de>
parents: 10479
diff changeset
   291
    blockWithArg value:stream.
6f1ae91a406e streamContents with limit
Claus Gittinger <cg@exept.de>
parents: 10479
diff changeset
   292
    ^ stream contents
6f1ae91a406e streamContents with limit
Claus Gittinger <cg@exept.de>
parents: 10479
diff changeset
   293
6f1ae91a406e streamContents with limit
Claus Gittinger <cg@exept.de>
parents: 10479
diff changeset
   294
    "Created: / 04-06-2007 / 17:22:38 / cg"
6f1ae91a406e streamContents with limit
Claus Gittinger <cg@exept.de>
parents: 10479
diff changeset
   295
!
6f1ae91a406e streamContents with limit
Claus Gittinger <cg@exept.de>
parents: 10479
diff changeset
   296
10479
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   297
streamContentsEnumerating:aReceiver using:enumeratorSelector
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   298
    "create a write-stream on an instance of the receiver-class,
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   299
     enumerate on aReceiver using enumeratorSelector as a do-block-selector,
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   300
     and return the collected values. Especially useful, if you have a do-like
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   301
     enumerator somewhere, and you want this as a collection."
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   302
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   303
    |stream|
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   304
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   305
    stream := self writeStream.
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   306
    aReceiver perform:enumeratorSelector with:[:each |stream nextPut:each].
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   307
    ^ stream contents
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   308
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   309
    "
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   310
     String streamContentsEnumerating:'hello' using:#reverseDo:
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   311
     Array streamContentsEnumerating:Method using:#allInstancesDo:
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   312
    "
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   313
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   314
    "Created: / 29-03-2007 / 15:21:12 / cg"
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   315
!
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   316
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   317
streamContentsOf:aReceiver enumerator:enumeratorSelector
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   318
    "create a write-stream on an instance of the receiver-class,
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   319
     enumerate on aReceiver using enumeratorSelector as a do-block-selector,
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   320
     and return the collected values. Especially useful, if you have a do-like
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   321
     enumerator somewhere, and you want this as a collection."
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   322
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   323
    |stream|
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   324
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   325
    stream := self writeStream.
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   326
    aReceiver perform:enumeratorSelector with:[:each |stream nextPut:each].
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   327
    ^ stream contents
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   328
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   329
    "
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   330
     String streamContentsOf:'hello' enumerator:#reverseDo:
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   331
     Array streamContentsOf:Method enumerator:#allInstancesDo:
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   332
    "
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   333
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   334
    "Created: / 29-03-2007 / 15:05:30 / cg"
13202
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   335
!
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   336
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   337
writeStream
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   338
    "create a write-stream on an instance of the receiver-class"
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   339
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   340
    ^ self writeStreamClass on:(self new:50).
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   341
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   342
    "
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   343
     OrderedCollection writeStream
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   344
    "
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   345
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   346
    "Modified: / 09-01-2011 / 10:37:35 / cg"
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   347
!
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   348
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   349
writeStreamWithInitialSize:l
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   350
    "create a write-stream on an instance of the receiver-class"
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   351
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   352
    ^ self writeStreamClass on:(self new:l).
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   353
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   354
    "
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   355
     OrderedCollection writeStream
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   356
    "
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   357
Claus Gittinger <cg@exept.de>
parents: 13043
diff changeset
   358
    "Created: / 09-01-2011 / 10:36:28 / cg"
10479
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   359
! !
fcbd291cce60 +streamContentsEnumerating:using:
Claus Gittinger <cg@exept.de>
parents: 10476
diff changeset
   360
8893
99996b25482e +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8874
diff changeset
   361
!SequenceableCollection class methodsFor:'queries'!
99996b25482e +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8874
diff changeset
   362
99996b25482e +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8874
diff changeset
   363
isAbstract
11219
0d1fbed1dd14 comment
Claus Gittinger <cg@exept.de>
parents: 11154
diff changeset
   364
    "Return if this class is an abstract class.
0d1fbed1dd14 comment
Claus Gittinger <cg@exept.de>
parents: 11154
diff changeset
   365
     True is returned for SequenceableCollection here; false for subclasses.
0d1fbed1dd14 comment
Claus Gittinger <cg@exept.de>
parents: 11154
diff changeset
   366
     Abstract subclasses must redefine again."
0d1fbed1dd14 comment
Claus Gittinger <cg@exept.de>
parents: 11154
diff changeset
   367
8893
99996b25482e +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8874
diff changeset
   368
    ^ self == SequenceableCollection
99996b25482e +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8874
diff changeset
   369
! !
99996b25482e +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8874
diff changeset
   370
14947
e9a0049c0ef1 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14893
diff changeset
   371
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7260
diff changeset
   372
!SequenceableCollection methodsFor:'Compatibility-Squeak'!
4414
dcf1a565095b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4403
diff changeset
   373
7796
29285c99ec71 +allButFirst
Claus Gittinger <cg@exept.de>
parents: 7636
diff changeset
   374
allButFirst
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   375
    "Return a copy of the receiver containing all but the first element.
7796
29285c99ec71 +allButFirst
Claus Gittinger <cg@exept.de>
parents: 7636
diff changeset
   376
     Raise an error if there are not enough elements."
29285c99ec71 +allButFirst
Claus Gittinger <cg@exept.de>
parents: 7636
diff changeset
   377
29285c99ec71 +allButFirst
Claus Gittinger <cg@exept.de>
parents: 7636
diff changeset
   378
    ^ self copyFrom:2
8571
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   379
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   380
    "
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   381
     '1234567890' allButFirst
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   382
    "
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   383
!
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   384
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   385
allButFirst:n
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   386
    "Return a copy of the receiver containing all but the first n elements.
8571
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   387
     Raise an error if there are not enough elements."
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   388
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   389
    ^ self copyFrom:n+1
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   390
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   391
    "
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   392
     '1234567890' allButFirst:5
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   393
    "
7796
29285c99ec71 +allButFirst
Claus Gittinger <cg@exept.de>
parents: 7636
diff changeset
   394
!
29285c99ec71 +allButFirst
Claus Gittinger <cg@exept.de>
parents: 7636
diff changeset
   395
6149
06c874ff7f78 some more (for squeak)
james
parents: 6130
diff changeset
   396
allButLast
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   397
    "Return a copy of the receiver containing all but the last element.
7796
29285c99ec71 +allButFirst
Claus Gittinger <cg@exept.de>
parents: 7636
diff changeset
   398
     Raise an error if there are not enough elements."
6183
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
   399
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
   400
    ^ self allButLast:1
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
   401
8571
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   402
    "
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   403
     '1234567890' allButLast
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   404
    "
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   405
6183
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
   406
    "Modified: / 13.11.2001 / 13:36:36 / cg"
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
   407
!
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
   408
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
   409
allButLast:n
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   410
    "Return a copy of the receiver containing all but the last n elements.
7796
29285c99ec71 +allButFirst
Claus Gittinger <cg@exept.de>
parents: 7636
diff changeset
   411
     Raise an error if there are not enough elements."
6183
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
   412
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
   413
    ^ self copyFrom: 1 to: self size - n
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
   414
8571
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   415
    "
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   416
     '1234567890' allButLast:5
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   417
    "
189457d2bada +allButFirst:
Claus Gittinger <cg@exept.de>
parents: 8396
diff changeset
   418
6183
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
   419
    "Modified: / 13.11.2001 / 13:36:28 / cg"
6149
06c874ff7f78 some more (for squeak)
james
parents: 6130
diff changeset
   420
!
06c874ff7f78 some more (for squeak)
james
parents: 6130
diff changeset
   421
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   422
atPin: index
4414
dcf1a565095b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4403
diff changeset
   423
    "Return the index'th element of me if possible.
dcf1a565095b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4403
diff changeset
   424
     Return the first or last element if index is out of bounds."
dcf1a565095b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4403
diff changeset
   425
dcf1a565095b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4403
diff changeset
   426
    index < 1 ifTrue:[^ self first].
dcf1a565095b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4403
diff changeset
   427
    index > self size ifTrue:[^ self last].
dcf1a565095b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4403
diff changeset
   428
    ^ self at:index
dcf1a565095b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4403
diff changeset
   429
dcf1a565095b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4403
diff changeset
   430
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   431
     #(1 2 3) atPin:4
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   432
     #(1 2 3) atPin:0
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   433
     #(1 2 3) atPin:1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   434
     #(1 2 3) atPin:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   435
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   436
!
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   437
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   438
atRandom
4459
a0466230c74b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4414
diff changeset
   439
    "Return any random element from the receiver"
a0466230c74b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4414
diff changeset
   440
8573
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8571
diff changeset
   441
    ^ self atRandom:Random
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8571
diff changeset
   442
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8571
diff changeset
   443
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   444
     #(1 2 3) atRandom
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   445
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   446
!
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   447
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   448
atRandom:aRandomGenerator
8573
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8571
diff changeset
   449
    "Return any random element from the receiver"
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8571
diff changeset
   450
4459
a0466230c74b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4414
diff changeset
   451
    |max idx|
a0466230c74b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4414
diff changeset
   452
a0466230c74b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4414
diff changeset
   453
    (max := self size) == 0 ifTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   454
	self emptyCollectionError
4459
a0466230c74b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4414
diff changeset
   455
    ].
8573
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8571
diff changeset
   456
    idx := aRandomGenerator nextIntegerBetween:1 and:max.
4459
a0466230c74b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4414
diff changeset
   457
    ^ self at:idx
a0466230c74b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4414
diff changeset
   458
a0466230c74b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4414
diff changeset
   459
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   460
     #(1 2 3) atRandom:(Random new)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   461
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   462
!
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   463
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   464
atWrap:index
4975
598ff2d009c1 added #atWrap:
Claus Gittinger <cg@exept.de>
parents: 4856
diff changeset
   465
    "Return the index'th element of me if possible.
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
   466
     Wrap the index modulu the receiver's size if it is out of bounds."
4975
598ff2d009c1 added #atWrap:
Claus Gittinger <cg@exept.de>
parents: 4856
diff changeset
   467
598ff2d009c1 added #atWrap:
Claus Gittinger <cg@exept.de>
parents: 4856
diff changeset
   468
    ^ self at:((index - 1) \\ (self size)) + 1
598ff2d009c1 added #atWrap:
Claus Gittinger <cg@exept.de>
parents: 4856
diff changeset
   469
598ff2d009c1 added #atWrap:
Claus Gittinger <cg@exept.de>
parents: 4856
diff changeset
   470
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   471
     #(1 2 3) atWrap:1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   472
     #(1 2 3) atWrap:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   473
     #(1 2 3) atWrap:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   474
     #(1 2 3) atWrap:4
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   475
     #(1 2 3) atWrap:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   476
     #(1 2 3) atWrap:6
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   477
     #(1 2 3) atWrap:7
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   478
     #(1 2 3) atWrap:0
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   479
     #(1 2 3) atWrap:-1
4975
598ff2d009c1 added #atWrap:
Claus Gittinger <cg@exept.de>
parents: 4856
diff changeset
   480
    "
5372
6c78e7ad3d5c added #beginsWith::
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
   481
!
6c78e7ad3d5c added #beginsWith::
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
   482
6c78e7ad3d5c added #beginsWith::
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
   483
beginsWith:aCollection
6183
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
   484
    "Squeak & VW compatibility: same as #startsWith: - sigh"
5372
6c78e7ad3d5c added #beginsWith::
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
   485
6c78e7ad3d5c added #beginsWith::
Claus Gittinger <cg@exept.de>
parents: 5358
diff changeset
   486
    ^ self startsWith:aCollection
6183
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
   487
13badb2ca788 comment
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
   488
    "Modified: / 13.11.2001 / 13:49:18 / cg"
6149
06c874ff7f78 some more (for squeak)
james
parents: 6130
diff changeset
   489
!
06c874ff7f78 some more (for squeak)
james
parents: 6130
diff changeset
   490
8611
be457b330755 +collect:from:to:
Claus Gittinger <cg@exept.de>
parents: 8579
diff changeset
   491
collect:aBlock from:startIndex to:stopIndex
8612
e9fcf5102655 comment
Claus Gittinger <cg@exept.de>
parents: 8611
diff changeset
   492
    "squeak uses a different naming here - sigh.
e9fcf5102655 comment
Claus Gittinger <cg@exept.de>
parents: 8611
diff changeset
   493
     Notice, that the squeak name is actually wrong and misleading, as it suggests
e9fcf5102655 comment
Claus Gittinger <cg@exept.de>
parents: 8611
diff changeset
   494
     collecting first and then taking the subcollection; this is wrong, as conceptually,
e9fcf5102655 comment
Claus Gittinger <cg@exept.de>
parents: 8611
diff changeset
   495
     this method first takes a slice (from:to:) and then collects over that.
e9fcf5102655 comment
Claus Gittinger <cg@exept.de>
parents: 8611
diff changeset
   496
     I.e. it is equivalent to:
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   497
	(self startIndex to:stopIndex) collect:aBlock"
8611
be457b330755 +collect:from:to:
Claus Gittinger <cg@exept.de>
parents: 8579
diff changeset
   498
be457b330755 +collect:from:to:
Claus Gittinger <cg@exept.de>
parents: 8579
diff changeset
   499
    ^ self from:startIndex to:stopIndex collect:aBlock
be457b330755 +collect:from:to:
Claus Gittinger <cg@exept.de>
parents: 8579
diff changeset
   500
!
be457b330755 +collect:from:to:
Claus Gittinger <cg@exept.de>
parents: 8579
diff changeset
   501
7012
31e8a29097f1 add methods for squeak compatibility
penk
parents: 6982
diff changeset
   502
copyAfter: anElement
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   503
	"Answer a copy of the receiver from after the first occurrence
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   504
	of anElement up to the end. If no such element exists, answer
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   505
	an empty copy."
7012
31e8a29097f1 add methods for squeak compatibility
penk
parents: 6982
diff changeset
   506
    |idx|
31e8a29097f1 add methods for squeak compatibility
penk
parents: 6982
diff changeset
   507
31e8a29097f1 add methods for squeak compatibility
penk
parents: 6982
diff changeset
   508
    idx := self indexOf:anElement.
31e8a29097f1 add methods for squeak compatibility
penk
parents: 6982
diff changeset
   509
    idx == 0 ifTrue:[idx := self size].
31e8a29097f1 add methods for squeak compatibility
penk
parents: 6982
diff changeset
   510
    ^ self copyFrom:idx + 1
31e8a29097f1 add methods for squeak compatibility
penk
parents: 6982
diff changeset
   511
31e8a29097f1 add methods for squeak compatibility
penk
parents: 6982
diff changeset
   512
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   513
     'hello world' copyAfter:$l
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   514
     '123456123456' copyAfter:$2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   515
     #(1 2 3 4 1 2 3 3 4 5 6) copyAfter:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   516
     #(1 2 3 4 2 3 3 4 5 6) copyAfter:1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   517
     #(1 2 3 4 1 2 3 3 4 5 6) copyAfter:7
7012
31e8a29097f1 add methods for squeak compatibility
penk
parents: 6982
diff changeset
   518
    "
31e8a29097f1 add methods for squeak compatibility
penk
parents: 6982
diff changeset
   519
!
31e8a29097f1 add methods for squeak compatibility
penk
parents: 6982
diff changeset
   520
6982
e75c1aadac1e copyAfterLAst: - Squeak compatibility
penk
parents: 6980
diff changeset
   521
copyAfterLast:element
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   522
    "return a copy of the receiver from (but excluding) the last occurrence
6982
e75c1aadac1e copyAfterLAst: - Squeak compatibility
penk
parents: 6980
diff changeset
   523
     of element to the end; uses = for comparison"
e75c1aadac1e copyAfterLAst: - Squeak compatibility
penk
parents: 6980
diff changeset
   524
e75c1aadac1e copyAfterLAst: - Squeak compatibility
penk
parents: 6980
diff changeset
   525
    |idx|
e75c1aadac1e copyAfterLAst: - Squeak compatibility
penk
parents: 6980
diff changeset
   526
e75c1aadac1e copyAfterLAst: - Squeak compatibility
penk
parents: 6980
diff changeset
   527
    idx := self lastIndexOf:element.
e75c1aadac1e copyAfterLAst: - Squeak compatibility
penk
parents: 6980
diff changeset
   528
    idx == 0 ifTrue:[idx := self size].
e75c1aadac1e copyAfterLAst: - Squeak compatibility
penk
parents: 6980
diff changeset
   529
    ^ self copyFrom:idx + 1
e75c1aadac1e copyAfterLAst: - Squeak compatibility
penk
parents: 6980
diff changeset
   530
e75c1aadac1e copyAfterLAst: - Squeak compatibility
penk
parents: 6980
diff changeset
   531
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   532
     'hello world' copyAfterLast:$l
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   533
     '123456123456' copyAfterLast:$2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   534
     #(1 2 3 4 1 2 3 3 4 5 6) copyAfterLast:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   535
     #(1 2 3 4 2 3 3 4 5 6) copyAfterLast:1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   536
     #(1 2 3 4 1 2 3 3 4 5 6) copyAfterLast:7
6982
e75c1aadac1e copyAfterLAst: - Squeak compatibility
penk
parents: 6980
diff changeset
   537
    "
e75c1aadac1e copyAfterLAst: - Squeak compatibility
penk
parents: 6980
diff changeset
   538
!
e75c1aadac1e copyAfterLAst: - Squeak compatibility
penk
parents: 6980
diff changeset
   539
6980
779c70ec56ee copyUpToLast: - Squeak compatibility
penk
parents: 6967
diff changeset
   540
copyUpToLast:element
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   541
    "return a copy of the receiver up to (but excluding) the last occurrence
6980
779c70ec56ee copyUpToLast: - Squeak compatibility
penk
parents: 6967
diff changeset
   542
     of element; uses = for comparison"
779c70ec56ee copyUpToLast: - Squeak compatibility
penk
parents: 6967
diff changeset
   543
779c70ec56ee copyUpToLast: - Squeak compatibility
penk
parents: 6967
diff changeset
   544
    |idx|
779c70ec56ee copyUpToLast: - Squeak compatibility
penk
parents: 6967
diff changeset
   545
779c70ec56ee copyUpToLast: - Squeak compatibility
penk
parents: 6967
diff changeset
   546
    idx := self lastIndexOf:element.
779c70ec56ee copyUpToLast: - Squeak compatibility
penk
parents: 6967
diff changeset
   547
    idx == 0 ifTrue:[idx := self size + 1].
779c70ec56ee copyUpToLast: - Squeak compatibility
penk
parents: 6967
diff changeset
   548
    ^ self copyTo:idx - 1
779c70ec56ee copyUpToLast: - Squeak compatibility
penk
parents: 6967
diff changeset
   549
779c70ec56ee copyUpToLast: - Squeak compatibility
penk
parents: 6967
diff changeset
   550
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   551
     'hello world' copyUpToLast:$l
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   552
     '123456123456' copyUpToLast:$2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   553
     #(1 2 3 4 1 2 3 3 4 5 6) copyUpToLast:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   554
     #(1 2 3 4 2 3 3 4 5 6) copyUpToLast:1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   555
     #(1 2 3 4 1 2 3 3 4 5 6) copyUpToLast:7
6980
779c70ec56ee copyUpToLast: - Squeak compatibility
penk
parents: 6967
diff changeset
   556
    "
779c70ec56ee copyUpToLast: - Squeak compatibility
penk
parents: 6967
diff changeset
   557
!
779c70ec56ee copyUpToLast: - Squeak compatibility
penk
parents: 6967
diff changeset
   558
8276
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   559
copyWithoutAll:elementsToSkip
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   560
    "return a new collection consisting of a copy of the receiver, with
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   561
     ALL elements equal to any in elementsToSkip are left out.
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   562
     No error is reported, if any in elementsToSkip is not in the collection."
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   563
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   564
    |n         "{ Class: SmallInteger }"
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   565
     sz        "{ Class: SmallInteger }"
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   566
     srcIndex  "{ Class: SmallInteger }"
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   567
     dstIndex  "{ Class: SmallInteger }"
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   568
     skipIndex "{ Class: SmallInteger }"
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   569
     copy l|
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   570
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   571
    "the code below may look like overkill,
8276
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   572
     however, for big collections its better to move data
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   573
     around in big chunks"
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   574
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   575
    n := self occurrencesOfAny:elementsToSkip.
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   576
    n == 0 ifTrue:[^ self copy].
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   577
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   578
    sz := self size.
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   579
    copy := self copyEmptyAndGrow:(sz - n).
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   580
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   581
    srcIndex := 1.
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   582
    dstIndex := 1.
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   583
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   584
    n timesRepeat:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   585
	skipIndex := self indexOfAny:elementsToSkip startingAt:srcIndex.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   586
	l := skipIndex - srcIndex.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   587
	l ~~ 0 ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   588
	    copy replaceFrom:dstIndex to:(dstIndex + l - 1)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   589
			with:self startingAt:srcIndex.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   590
	    dstIndex := dstIndex + l
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   591
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   592
	srcIndex := skipIndex + 1
8276
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   593
    ].
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   594
    l := sz - srcIndex.
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   595
    copy replaceFrom:dstIndex to:(dstIndex + l)
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   596
		with:self startingAt:srcIndex.
8276
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   597
    ^ copy
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   598
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   599
    "
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   600
     #($a $b $c $d $e $f $g) copyWithoutAll:#($d $b $f)
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   601
     'abcdefghi' copyWithoutAll:'hai'
8276
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   602
     #(90 80 70 80 60 45 80 50) copyWithoutAll:#(80 70 45)
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   603
    "
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   604
!
9720407471d6 +copyWithoutAll:
Claus Gittinger <cg@exept.de>
parents: 8220
diff changeset
   605
7304
faf85c4f0073 category
Claus Gittinger <cg@exept.de>
parents: 7279
diff changeset
   606
copyWithoutFirst
faf85c4f0073 category
Claus Gittinger <cg@exept.de>
parents: 7279
diff changeset
   607
    ^ self copyFrom:2
faf85c4f0073 category
Claus Gittinger <cg@exept.de>
parents: 7279
diff changeset
   608
!
faf85c4f0073 category
Claus Gittinger <cg@exept.de>
parents: 7279
diff changeset
   609
14674
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
   610
joinWith:separatingElement
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
   611
    "return a collection generated by concatenating my elements
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
   612
     and embedding separatingElement in between.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
   613
     Similar to asStringWith:, but not specifically targeted towards collections of strings."
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
   614
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
   615
    ^ self
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
   616
        joinWithAll:(Array with:separatingElement)
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
   617
        from:1 to:(self size) as:nil
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
   618
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
   619
    "
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
   620
     #('hello' 'world' 'foo' 'bar' 'baz') joinWith:$;   
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
   621
     #('hello' 'world' 'foo' 'bar' 'baz') joinWith:$|
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
   622
    "
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
   623
!
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
   624
12051
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   625
shuffled
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   626
    "return a randomly shuffled copy of the receiver"
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   627
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   628
    ^ self shuffledBy:Random
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   629
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   630
    "
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   631
     #(1 2 3 4 5 6 7 8 9) shuffled.
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   632
     #(1 2 3 4 5 6 7 8 9) shuffled. 
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   633
    "
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   634
!
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   635
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   636
shuffledBy:aRandom
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   637
    "return a randomly shuffled copy of the receiver, using the given random generator"
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   638
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   639
    |copy|
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   640
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   641
    copy := self shallowCopy.
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   642
    copy size to: 1 by: -1 do:[:i | 
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   643
        copy swap: i with: ((1 to: i) atRandom: aRandom)
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   644
    ].
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   645
    ^ copy
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   646
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   647
    "
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   648
     #(1 2 3 4 5 6 7 8 9) shuffledBy:(Random new).
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   649
     #(1 2 3 4 5 6 7 8 9) shuffledBy:(Random new). 
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   650
    "
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   651
!
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
   652
11279
9f0be84b3a9d squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 11273
diff changeset
   653
sortBy:aBlock
9f0be84b3a9d squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 11273
diff changeset
   654
    "Sort inplace - destructive"
9f0be84b3a9d squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 11273
diff changeset
   655
9f0be84b3a9d squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 11273
diff changeset
   656
    self sort:aBlock
9f0be84b3a9d squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 11273
diff changeset
   657
9f0be84b3a9d squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 11273
diff changeset
   658
    "Created: / 22-10-2008 / 21:25:35 / cg"
4414
dcf1a565095b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4403
diff changeset
   659
! !
dcf1a565095b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4403
diff changeset
   660
14138
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   661
!SequenceableCollection methodsFor:'Compatibility-V''Age'!
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   662
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   663
replaceFrom:start to:end withObject:anObject
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   664
    "Replace the elements from start to end with anObject.
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   665
     Return the receiver."
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   666
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   667
    self from:start to:end put:anObject.
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   668
    ^ self.
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   669
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   670
    "
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   671
     |a|
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   672
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   673
     a := Array new: 10.
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   674
     a replaceFrom:3 to:7 withObject:999.
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   675
     a
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   676
    "
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   677
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   678
    "Created: / 16-05-2012 / 11:13:55 / cg"
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   679
! !
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
   680
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7260
diff changeset
   681
!SequenceableCollection methodsFor:'Compatibility-VW'!
6566
be486c43613a vw compat.
Claus Gittinger <cg@exept.de>
parents: 6554
diff changeset
   682
be486c43613a vw compat.
Claus Gittinger <cg@exept.de>
parents: 6554
diff changeset
   683
replaceElementsFrom:start to:stop withArray:anArray startingAt:repStart
be486c43613a vw compat.
Claus Gittinger <cg@exept.de>
parents: 6554
diff changeset
   684
    ^ self replaceFrom:start to:stop with:anArray startingAt:repStart
be486c43613a vw compat.
Claus Gittinger <cg@exept.de>
parents: 6554
diff changeset
   685
! !
be486c43613a vw compat.
Claus Gittinger <cg@exept.de>
parents: 6554
diff changeset
   686
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   687
!SequenceableCollection methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   688
1366
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   689
after:anObject
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   690
    "return the element, after anObject.
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   691
     If anObject is not in the receiver, report an error;
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   692
     if anObject is the last in the receiver, return nil.
1366
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   693
     This depends on #after:ifAbsent: being implemented in a concrete class."
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   694
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   695
    ^ self after:anObject ifAbsent:[self errorValueNotFound:anObject]
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   696
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   697
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   698
     #(4 3 2 1) asOrderedCollection after:3.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   699
     #(4 3 2 1) asOrderedCollection after:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   700
     #(4 3 2 1) asOrderedCollection after:1
1366
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   701
    "
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   702
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   703
    "Created: 10.5.1996 / 13:59:29 / cg"
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   704
    "Modified: 10.5.1996 / 14:03:33 / cg"
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   705
!
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   706
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   707
after:anObject ifAbsent:exceptionBlock
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   708
    "return the element, after anObject.
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   709
     If anObject is the last in the receiver, return nil.
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   710
     If there is no such element (anObject is not found),
1366
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   711
     return the value from exceptionBlock."
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   712
5501
3609f87cb0e6 after:ifAbsent: & before:ifAbsent: added
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
   713
    |idx|
3609f87cb0e6 after:ifAbsent: & before:ifAbsent: added
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
   714
3609f87cb0e6 after:ifAbsent: & before:ifAbsent: added
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
   715
    idx := self indexOf:anObject.
3609f87cb0e6 after:ifAbsent: & before:ifAbsent: added
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
   716
    idx ~~ 0 ifTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   717
	idx == self size ifTrue:[^ nil].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   718
	^ self at:(idx + 1).
5501
3609f87cb0e6 after:ifAbsent: & before:ifAbsent: added
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
   719
    ].
3609f87cb0e6 after:ifAbsent: & before:ifAbsent: added
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
   720
    ^ exceptionBlock value
3609f87cb0e6 after:ifAbsent: & before:ifAbsent: added
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
   721
3609f87cb0e6 after:ifAbsent: & before:ifAbsent: added
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
   722
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   723
     #(4 3 2 1) after:3 ifAbsent:nil.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   724
     (2 to:10 by:2) after:4 ifAbsent:nil.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   725
     #(4 3 2 1) asOrderedCollection after:5 ifAbsent:nil.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   726
     (2 to:10 by:2) after:5 ifAbsent:nil.
5501
3609f87cb0e6 after:ifAbsent: & before:ifAbsent: added
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
   727
    "
1366
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   728
!
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   729
6967
e061bbdd10d4 better #anElement
Claus Gittinger <cg@exept.de>
parents: 6958
diff changeset
   730
anElement
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   731
    "return any element from the collection,
6967
e061bbdd10d4 better #anElement
Claus Gittinger <cg@exept.de>
parents: 6958
diff changeset
   732
     report an error if there is none"
e061bbdd10d4 better #anElement
Claus Gittinger <cg@exept.de>
parents: 6958
diff changeset
   733
e061bbdd10d4 better #anElement
Claus Gittinger <cg@exept.de>
parents: 6958
diff changeset
   734
    ^ self first
8859
42a82dadb147 error raised in first and anElement
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
   735
42a82dadb147 error raised in first and anElement
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
   736
    "
42a82dadb147 error raised in first and anElement
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
   737
     #() first  -> Error
42a82dadb147 error raised in first and anElement
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
   738
     #(1 2 3) first  -> 1
42a82dadb147 error raised in first and anElement
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
   739
    "
6967
e061bbdd10d4 better #anElement
Claus Gittinger <cg@exept.de>
parents: 6958
diff changeset
   740
!
e061bbdd10d4 better #anElement
Claus Gittinger <cg@exept.de>
parents: 6958
diff changeset
   741
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
   742
at:index ifAbsent:exceptionBlock
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   743
    "return the element at index if valid.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   744
     If the index is invalid, return the result of evaluating
302
1f76060d58a4 *** empty log message ***
claus
parents: 293
diff changeset
   745
     the exceptionblock.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   746
     NOTICE:
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   747
	in ST-80, this message is only defined for Dictionaries,
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   748
	however, having a common protocol with indexed collections
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   749
	often simplifies things."
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
   750
8579
da7c9101e7a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8573
diff changeset
   751
    (index between:1 and:self size) ifFalse:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   752
	^ exceptionBlock value
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
   753
    ].
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
   754
    ^ self at:index
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
   755
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   756
    "
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   757
     #(1 2 3) at:4 ifAbsent:['no such index']
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   758
     #(1 2 3) asOrderedCollection at:4 ifAbsent:['no such index']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   759
     #(1 2 3) at:4 ifAbsent:['no such index']
302
1f76060d58a4 *** empty log message ***
claus
parents: 293
diff changeset
   760
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   761
     (Dictionary with:(#foo -> #bar)
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   762
		 with:(#frob -> #baz))
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   763
	 at:#foobar ifAbsent:['no such index']
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   764
    "
362
claus
parents: 360
diff changeset
   765
!
claus
parents: 360
diff changeset
   766
13003
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   767
atAllIndices:indexCollection
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   768
    "return the elements at each index from indexCollection."
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   769
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   770
    ^ indexCollection collect:[:eachIdx | self at:eachIdx].
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   771
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   772
    "
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   773
     'abcdefghijklmnopqrstuvwxyz' atAllIndices:#( 8 5 12 12 15) 
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   774
     'abcdefghijklmnopqrstuvwxyz' atAllIndices:( 5 to: 10) 
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   775
    "
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   776
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   777
    "Created: / 08-08-2010 / 01:15:06 / cg"
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   778
!
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   779
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   780
atIndex:index
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   781
    "return an element at a given index. This allows for seqentialCollections
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   782
     and orderedDictionaries to be both accessed via a numeric index."
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   783
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   784
    ^ self at:index
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   785
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   786
    "Created: / 08-08-2010 / 00:50:10 / cg"
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   787
!
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   788
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   789
atIndex:index put:newValue
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   790
    "return an element at a given index. This allows for seqentialCollections
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   791
     and orderedDictionaries to be both accessed via a numeric index."
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   792
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   793
    ^ self at:index put:newValue
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   794
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   795
    "Created: / 08-08-2010 / 00:50:27 / cg"
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   796
!
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   797
1366
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   798
before:anObject
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   799
    "return the element before the argument, anObject.
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   800
     If anObject is not in the receiver, report an error;
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   801
     if anObject is the first in the receiver, return nil.
1366
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   802
     This depends on #before:ifAbsent: being implemented in a concrete class."
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   803
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   804
    ^ self before:anObject ifAbsent:[self errorValueNotFound:anObject]
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   805
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   806
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   807
     #(4 3 2 1) asOrderedCollection before:3.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   808
     #(4 3 2 1) asOrderedCollection before:4
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   809
     #(4 3 2 1) asOrderedCollection before:0
1366
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   810
    "
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   811
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   812
    "Created: 10.5.1996 / 14:03:27 / cg"
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   813
    "Modified: 10.5.1996 / 14:03:44 / cg"
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   814
!
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   815
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   816
before:anObject ifAbsent:exceptionBlock
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   817
    "return the element, before anObject.
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   818
     If anObject is the first in the receiver, return nil.
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   819
     If there is no such element (anObject is not found),
1366
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   820
     return the value from exceptionBlock."
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   821
5501
3609f87cb0e6 after:ifAbsent: & before:ifAbsent: added
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
   822
    |idx|
3609f87cb0e6 after:ifAbsent: & before:ifAbsent: added
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
   823
3609f87cb0e6 after:ifAbsent: & before:ifAbsent: added
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
   824
    idx := self indexOf:anObject.
3609f87cb0e6 after:ifAbsent: & before:ifAbsent: added
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
   825
    idx ~~ 0 ifTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   826
	idx == 1 ifTrue:[^ nil].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   827
	^ self at:(idx - 1).
5501
3609f87cb0e6 after:ifAbsent: & before:ifAbsent: added
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
   828
    ].
3609f87cb0e6 after:ifAbsent: & before:ifAbsent: added
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
   829
    ^ exceptionBlock value
1366
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   830
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   831
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   832
     #(4 3 2 1) asOrderedCollection before:3 ifAbsent:nil.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   833
     #(4 3 2 1) asOrderedCollection before:5 ifAbsent:nil.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   834
     #(4 3 2 1) asOrderedCollection before:5.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   835
     #(4 3 2 1) asOrderedCollection before:4 ifAbsent:nil.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   836
     #(4 3 2 1) asOrderedCollection before:4.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   837
     (2 to:10 by:2) before:4 ifAbsent:nil.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   838
     (2 to:10 by:2) before:5 ifAbsent:nil.
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   839
    "
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   840
1366
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   841
!
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   842
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   843
first
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   844
    "return the first element;
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   845
     report an error, if the collection is empty."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   846
8859
42a82dadb147 error raised in first and anElement
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
   847
    self isEmpty ifTrue:[^ self emptyCollectionError].
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   848
    ^ self at:1
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
   849
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
   850
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   851
     args:
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
   852
     returns: firstElement <object>
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
   853
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
   854
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
   855
    "Modified: / 20.5.1998 / 14:50:25 / cg"
362
claus
parents: 360
diff changeset
   856
!
claus
parents: 360
diff changeset
   857
5887
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   858
first:n
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   859
    "return the n first elements of the collection.
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   860
     Raises an error if there are not enough elements in the receiver."
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   861
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   862
    n < 0 ifTrue:[self error:'bad (negative) argument'].
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   863
    n > self size ifTrue:[^ self notEnoughElementsError].
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   864
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   865
    ^ self copyFirst:n
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   866
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   867
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   868
     #(1 2 3 4 5) first:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   869
     #(1 2 3 4 5) first:6
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   870
     #(1 2 3 4 5) asSet first:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   871
     'hello world' first:5
5887
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   872
    "
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   873
!
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   874
11878
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   875
indexOfNth:n occurrenceOf:what
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   876
    "return the index of the nTh occurence of a value, or 0 if there are not that many"
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   877
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   878
    |idx cnt|
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   879
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   880
    n > self size ifTrue:[^ 0].
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   881
    cnt := 0.
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   882
    idx := 0.
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   883
    [
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   884
        idx := self indexOf:what startingAt:idx+1.
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   885
        idx == 0 ifTrue:[^ 0].
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   886
        cnt := cnt + 1.
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   887
        cnt = n ifTrue:[ ^ idx].
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   888
    ] loop.
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   889
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   890
    "
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   891
     #(1 2 3 4 1 2 3 1 9 8 7 1 7 8 9 0) indexOfNth:3 occurrenceOf:1  
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   892
     #(1 2 3 4 1 2 3 1 9 8 7 1 7 8 9 0) indexOfNth:3 occurrenceOf:9  
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   893
    "
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   894
!
dbc05293d160 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11875
diff changeset
   895
362
claus
parents: 360
diff changeset
   896
keyAtEqualValue:value
claus
parents: 360
diff changeset
   897
    "return the index of a value.
claus
parents: 360
diff changeset
   898
     This is normally not used (use indexOf:), but makes the
claus
parents: 360
diff changeset
   899
     protocol more compatible with dictionaries."
claus
parents: 360
diff changeset
   900
claus
parents: 360
diff changeset
   901
    ^ self indexOf:value
claus
parents: 360
diff changeset
   902
!
claus
parents: 360
diff changeset
   903
claus
parents: 360
diff changeset
   904
keyAtEqualValue:value ifAbsent:exceptionBlock
claus
parents: 360
diff changeset
   905
    "return the index of a value.
claus
parents: 360
diff changeset
   906
     This is normally not used (use indexOf:), but makes the
claus
parents: 360
diff changeset
   907
     protocol more compatible with dictionaries."
claus
parents: 360
diff changeset
   908
claus
parents: 360
diff changeset
   909
    ^ self indexOf:value ifAbsent:exceptionBlock
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   910
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   911
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   912
keyAtValue:value
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   913
    "return the index of a value.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   914
     This is normally not used (use indexOf:), but makes the
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   915
     protocol more compatible with dictionaries."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   916
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   917
    ^ self identityIndexOf:value
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   918
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   919
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   920
keyAtValue:value ifAbsent:exceptionBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   921
    "return the index of a value.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   922
     This is normally not used (use indexOf:), but makes the
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   923
     protocol more compatible with dictionaries."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   924
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   925
    ^ self identityIndexOf:value ifAbsent:exceptionBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   926
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   927
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   928
last
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   929
    "return the last element;
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   930
     report an error, if the collection is empty."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   931
3408
411024a56ffd check for being empty in #last
Claus Gittinger <cg@exept.de>
parents: 3234
diff changeset
   932
    |sz|
411024a56ffd check for being empty in #last
Claus Gittinger <cg@exept.de>
parents: 3234
diff changeset
   933
411024a56ffd check for being empty in #last
Claus Gittinger <cg@exept.de>
parents: 3234
diff changeset
   934
    (sz := self size) == 0 ifFalse:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   935
	^ self at:sz
3408
411024a56ffd check for being empty in #last
Claus Gittinger <cg@exept.de>
parents: 3234
diff changeset
   936
    ].
411024a56ffd check for being empty in #last
Claus Gittinger <cg@exept.de>
parents: 3234
diff changeset
   937
    "error if collection is empty"
411024a56ffd check for being empty in #last
Claus Gittinger <cg@exept.de>
parents: 3234
diff changeset
   938
    ^ self emptyCollectionError
411024a56ffd check for being empty in #last
Claus Gittinger <cg@exept.de>
parents: 3234
diff changeset
   939
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   940
    "
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   941
     #(1 2 3 4 5) last
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   942
     #() last
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   943
    "
1370
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   944
!
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   945
5887
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   946
last:n
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   947
    "return the n last elements of the collection.
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   948
     Raises an error if there are not enough elements in the receiver."
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   949
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   950
    n < 0 ifTrue:[self error:'bad (negative) argument'].
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   951
    n > self size ifTrue:[^ self notEnoughElementsError].
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   952
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   953
    ^ self copyLast:n
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   954
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   955
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   956
     #(1 2 3 4 5) last:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   957
     #(1 2 3 4 5) last:6
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   958
     #(1 2 3 4 5) asSet last:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   959
     'hello world' last:5
5887
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   960
    "
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   961
!
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5872
diff changeset
   962
4986
77673dfa1b48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4975
diff changeset
   963
nth:n
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   964
    "return the nth element;
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   965
     report an error, if the collections size is smaller than n."
4986
77673dfa1b48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4975
diff changeset
   966
77673dfa1b48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4975
diff changeset
   967
    ^ self at:n
77673dfa1b48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4975
diff changeset
   968
77673dfa1b48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4975
diff changeset
   969
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   970
     args:
4986
77673dfa1b48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4975
diff changeset
   971
     returns: nth element <object>
77673dfa1b48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4975
diff changeset
   972
    "
77673dfa1b48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4975
diff changeset
   973
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   974
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   975
     #(10 20 30 40 50) nth:4
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   976
     #(10 20 30 40 50) nth:6
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   977
     #() nth:1
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   978
    "
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   979
4986
77673dfa1b48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4975
diff changeset
   980
!
77673dfa1b48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4975
diff changeset
   981
11915
Claus Gittinger <cg@exept.de>
parents: 11880
diff changeset
   982
order
Claus Gittinger <cg@exept.de>
parents: 11880
diff changeset
   983
    "the order is the set of keys "
Claus Gittinger <cg@exept.de>
parents: 11880
diff changeset
   984
Claus Gittinger <cg@exept.de>
parents: 11880
diff changeset
   985
    ^ 1 to:self size
Claus Gittinger <cg@exept.de>
parents: 11880
diff changeset
   986
!
Claus Gittinger <cg@exept.de>
parents: 11880
diff changeset
   987
4855
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4807
diff changeset
   988
second
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   989
    "return the second element;
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
   990
     report an error, if the collections size is smaller than 2."
4855
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4807
diff changeset
   991
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4807
diff changeset
   992
    ^ self at:2
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4807
diff changeset
   993
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4807
diff changeset
   994
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
   995
     args:
4855
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4807
diff changeset
   996
     returns: secondElement <object>
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4807
diff changeset
   997
    "
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4807
diff changeset
   998
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4807
diff changeset
   999
    "Modified: / 20.5.1998 / 14:50:25 / cg"
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4807
diff changeset
  1000
!
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4807
diff changeset
  1001
3037
1293e34a06cf added #swap:with: for compatibility
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
  1002
swap:index1 with:index2
1293e34a06cf added #swap:with: for compatibility
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
  1003
    "exchange two elements"
1293e34a06cf added #swap:with: for compatibility
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
  1004
1293e34a06cf added #swap:with: for compatibility
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
  1005
    |t|
1293e34a06cf added #swap:with: for compatibility
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
  1006
1293e34a06cf added #swap:with: for compatibility
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
  1007
    t := self at:index1.
1293e34a06cf added #swap:with: for compatibility
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
  1008
    self at:index1 put:(self at:index2).
1293e34a06cf added #swap:with: for compatibility
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
  1009
    self at:index2 put:t
1293e34a06cf added #swap:with: for compatibility
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
  1010
1293e34a06cf added #swap:with: for compatibility
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
  1011
    "Modified: 15.10.1997 / 19:27:08 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1012
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1013
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1014
!SequenceableCollection methodsFor:'adding & removing'!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1015
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1016
add:anObject
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1017
    "append the argument, anObject to the collection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1018
     Return the argument, anObject.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1019
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1020
     Notice, that this is modifies the receiver NOT a copy.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1021
     Also note, that it may be a slow operation for some collections,
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1022
     due to the grow:-message, which is inefficient for fixed size
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1023
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1024
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1025
    |newSize|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1026
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1027
    newSize := self size + 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1028
    self grow:newSize.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1029
    self at:newSize put:anObject.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1030
    ^ anObject
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1031
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1032
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1033
     |a|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1034
     a := #(1 2 3 4 5 6 7 8).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1035
     a add:'hello'.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1036
     a
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1037
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1038
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1039
     |c|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1040
     c := #(1 2 3 4 5 6 7 8) asOrderedCollection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1041
     c add:'hello'.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1042
     c
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1043
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1044
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1045
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1046
add:anElement beforeIndex:index
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1047
    "insert the first argument, anObject into the collection before slot index.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1048
     Return the receiver (sigh - ST-80 compatibility).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1049
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1050
     Notice, that this is modifies the receiver NOT a copy.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1051
     Also note, that it may be a slow operation for some collections,
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1052
     due to the grow:-message, which is inefficient for fixed size
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1053
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1054
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1055
    |newSize|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1056
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1057
    newSize := self size + 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1058
    self grow:newSize.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1059
    self replaceFrom:index + 1 to:newSize with:self startingAt:index.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1060
    self at:index put:anElement
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1061
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1062
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1063
     #(1 2 3 4 5 6 7 8) add:'hello' beforeIndex:5
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1064
    "
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1065
!
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1066
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1067
addFirst:anObject
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1068
    "prepend the argument, anObject to the collection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1069
     Return the argument, anObject.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1070
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1071
     Notice, that this is modifies the receiver NOT a copy.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1072
     Also note, that it may be a slow operation for some collections,
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1073
     due to the grow:-message, which is inefficient for fixed size
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1074
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1075
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1076
    |newSize|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1077
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1078
    newSize := self size + 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1079
    self grow:newSize.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1080
    self replaceFrom:2 to:newSize with:self startingAt:1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1081
    self at:1 put:anObject.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1082
    ^ anObject
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1083
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1084
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1085
     |a|
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1086
     a:= #(1 2 3 4 5 6 7 8).
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1087
     a addFirst:'hello'.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1088
     a
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1089
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1090
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1091
     |c|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1092
     c := #(1 2 3 4 5 6 7 8) asOrderedCollection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1093
     c addFirst:'hello'.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1094
     c
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1095
    "
69
4564b6328136 *** empty log message ***
claus
parents: 61
diff changeset
  1096
!
4564b6328136 *** empty log message ***
claus
parents: 61
diff changeset
  1097
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1098
remove:anElement ifAbsent:aBlock
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1099
    "search for an object which is equal to anElement;
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1100
     if found remove and return it; if not, return the value from evaluating aBlock.
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1101
     Use equality compare (=) to search for an occurrence.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1102
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1103
     Notice, that this is modifies the receiver NOT a copy.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1104
     Also note, that it may be a slow operation for some collections,
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1105
     due to the grow:-message, which is inefficient for fixed size
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1106
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1107
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1108
    |any
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1109
     dstIndex "{ Class: SmallInteger }"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1110
     sz       "{ Class: SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1111
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1112
    dstIndex := 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1113
    any := false.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1114
    sz := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1115
    1 to:sz do:[:srcIndex |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1116
	(anElement = (self at:srcIndex)) ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1117
	    any := true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1118
	] ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1119
	    (dstIndex ~~ srcIndex) ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1120
		self at:dstIndex put:(self at:srcIndex)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1121
	    ].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1122
	    dstIndex := dstIndex + 1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1123
	]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1124
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1125
    any ifTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1126
	self grow:dstIndex - 1.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1127
	^ anElement
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1128
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1129
    ^ aBlock value
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1130
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1131
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1421
diff changeset
  1132
     #(1 2 3 4 5 6 7 8 9 0) remove:3 ifAbsent:[Transcript showCR:'no']
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1133
     #(1 2 3 4 5 6 7 8 9 0) remove:99 ifAbsent:[#oops]
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1134
     #(1.0 2.0 3.0 4.0 5.0) remove:5 ifAbsent:[#oops]
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1135
     #(1.0 2.0 3.0 4.0 5.0) removeIdentical:5 ifAbsent:[#oops]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1136
    "
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1137
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1138
    "Modified: 1.2.1997 / 11:49:01 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1139
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1140
1369
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1141
removeAllSuchThat:aBlock
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1142
    "remove all elements that meet a test criteria as specified in aBlock.
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1143
     The argument, aBlock is evaluated for successive elements and all those,
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1144
     for which it returns true, are removed.
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1145
     Return a collection containing the removed elements."
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1146
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1147
    "/ this is a q&d implementation (possibly slow).
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1148
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1149
    |runIndex removed element|
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1150
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1151
    removed := self species new.
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1152
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1153
    runIndex := 1.
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1154
    [runIndex <= self size] whileTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1155
	element := self at:runIndex.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1156
	(aBlock value:element) ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1157
	    removed add:element.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1158
	    self removeAtIndex:runIndex
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1159
	] ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1160
	    runIndex := runIndex + 1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1161
	]
1369
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1162
    ].
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1163
    ^ removed
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1164
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1165
    "
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1166
     |coll|
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1167
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1168
     coll := OrderedCollection withAll:(1 to:10).
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1421
diff changeset
  1169
     Transcript showCR:(coll removeAllSuchThat:[:el | el even]).
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1421
diff changeset
  1170
     Transcript showCR:coll
1369
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1171
    "
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1172
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1173
    "Created: 11.5.1996 / 09:49:30 / cg"
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1174
!
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
  1175
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1176
removeAtIndex:anIndex
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1177
    "remove the element stored at anIndex. Return the removed object.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1178
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1179
     Notice, that this is modifies the receiver NOT a copy.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1180
     Also note, that it may be a slow operation for some collections,
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1181
     due to the grow:-message, which is inefficient for fixed size
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1182
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1183
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1184
    |element|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1185
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1186
    element := self at:anIndex.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1187
    self removeFromIndex:anIndex toIndex:anIndex.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1188
    ^ element
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1189
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1190
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1191
     #(1 2 3 4 5 6 7 8 9) asOrderedCollection removeAtIndex:3
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1192
     #(1 2 3 4 5) asOrderedCollection removeAtIndex:6
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1193
     #($a $b $c $d $e $f $g) removeAtIndex:3
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1194
    "
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
  1195
!
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
  1196
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1197
removeFirst
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1198
    "remove the first element of the receiver and return it.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1199
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1200
     Notice, that this is modifies the receiver NOT a copy.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1201
     Also note, that it may be a slow operation for some collections,
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1202
     due to the grow:-message, which is inefficient for fixed size
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1203
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1204
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1205
    ^ self removeAtIndex:1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1206
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1207
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1208
     |a|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1209
     a := #(1 2 3 4 5 6).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1210
     a removeFirst.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1211
     a
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1212
    "
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
  1213
!
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
  1214
2294
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1215
removeFromIndex:startIndex
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1216
    "remove the elements stored at indexes from startIndex to the end.
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1217
     Return the receiver.
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1218
     Returning the receiver is a historic leftover - it may at one
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1219
     time return a collection of the removed elements.
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1220
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1221
     Notice, that this is modifies the receiver - NOT a copy;
2294
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1222
     therefore any other users of the receiver will also see this change.
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1223
     Also note, that it may be a slow operation for some collections,
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1224
     due to the grow:-message, which is inefficient for fixed size
2294
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1225
     collections (i.e. for Strings and Arrays it is not recommened)."
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1226
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1227
    ^ self removeFromIndex:startIndex toIndex:(self size)
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1228
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1229
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1230
     #(1 2 3 4 5 6 7 8 9 0) asOrderedCollection removeFromIndex:3
2294
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1231
     #(1 2 3 4 5 6 7 8 9 0) removeFromIndex:3
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1232
    "
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1233
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1234
    "Modified: 28.1.1997 / 12:35:20 / cg"
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1235
!
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  1236
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1237
removeFromIndex:startIndex toIndex:endIndex
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1238
    "remove the elements stored at indexes between startIndex and endIndex.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1239
     Return the receiver.
14893
c2a574a182f3 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14686
diff changeset
  1240
c2a574a182f3 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14686
diff changeset
  1241
     Notice, that this modifies the receiver - NOT a copy;
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1242
     therefore any other users of the receiver will also see this change.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1243
     Also note, that it may be a slow operation for some collections,
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1244
     due to the grow:-message, which is inefficient for fixed size
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1245
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1246
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1247
    |size newSize|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1248
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1249
    (endIndex >= (size := self size)) ifTrue:[
14893
c2a574a182f3 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14686
diff changeset
  1250
        self grow:(startIndex - 1)
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1251
    ] ifFalse:[
14893
c2a574a182f3 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14686
diff changeset
  1252
        newSize := size - endIndex + startIndex - 1.
c2a574a182f3 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14686
diff changeset
  1253
        self replaceFrom:startIndex to:newSize with:self startingAt:(endIndex + 1).
c2a574a182f3 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14686
diff changeset
  1254
        self grow:newSize
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1255
    ]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1256
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1257
"/    |newSize|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1258
"/
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1259
"/    newSize := self size - endIndex + startIndex - 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1260
"/    newSize <= 0 ifTrue:[
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1261
"/        self grow:0
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1262
"/    ] ifFalse:[
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1263
"/        self replaceFrom:startIndex to:newSize with:self startingAt:(endIndex + 1).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1264
"/        self grow:newSize
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1265
"/    ]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1266
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1267
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1268
     #(1 2 3 4 5 6 7 8 9 0) asOrderedCollection removeFromIndex:3 toIndex:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1269
     #(1 2 3 4 5 6 7 8 9 0) removeFromIndex:3 toIndex:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1270
     #(1 2 3 4 5 6 7 8 9 0) asOrderedCollection removeFromIndex:1 toIndex:10
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1271
     #(1 2 3 4 5 6 7 8 9 0) removeFromIndex:1 toIndex:10
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1272
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1273
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1274
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1275
removeIdentical:anElement ifAbsent:aBlock
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1276
    "search for an object which is identical to anElement;
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1277
     if found remove and return it; if not, return the value from evaluating aBlock.
2363
57cc0807827a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2347
diff changeset
  1278
     Uses identity compare (==) to search for an occurrence.
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1279
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1280
     Notice, that this is modifies the receiver NOT a copy.
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1281
     Also note, that it may be a slow operation for some collections,
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1282
     due to the grow:-message, which is inefficient for fixed size
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1283
     collections (i.e. for Strings and Arrays it is not recommened)."
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1284
2363
57cc0807827a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2347
diff changeset
  1285
    |any el
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1286
     dstIndex "{ Class: SmallInteger }"
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1287
     sz       "{ Class: SmallInteger }"|
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1288
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1289
    dstIndex := 1.
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1290
    any := false.
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1291
    sz := self size.
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1292
    1 to:sz do:[:srcIndex |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1293
	el := self at:srcIndex.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1294
	(anElement == el) ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1295
	    any := true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1296
	] ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1297
	    (dstIndex ~~ srcIndex) ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1298
		self at:dstIndex put:el
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1299
	    ].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1300
	    dstIndex := dstIndex + 1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1301
	]
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1302
    ].
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1303
    any ifTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1304
	self grow:dstIndex - 1.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1305
	^ anElement
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1306
    ].
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1307
    ^ aBlock value
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1308
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1309
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1310
     #(1.0 2.0 3.0 4.0 5.0) remove:5 ifAbsent:[#oops]
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1311
     #(1.0 2.0 3.0 4.0 5.0) removeIdentical:5 ifAbsent:[#oops]
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1312
    "
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1313
2363
57cc0807827a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2347
diff changeset
  1314
    "Modified: 8.2.1997 / 16:26:49 / cg"
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1315
!
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
  1316
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1317
removeIndex:index
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1318
    "remove the argument stored at index. Return the receiver.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1319
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1320
     Notice, that this is modifies the receiver NOT a copy.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1321
     Also note, that it may be a slow operation for some collections,
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1322
     due to the grow:-message, which is inefficient for fixed size
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1323
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1324
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1325
    self removeFromIndex:index toIndex:index
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1326
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1327
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1328
     #(1 2 3 4 5 6 7 8 9) asOrderedCollection removeIndex:3
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1329
     #(1 2 3 4 5) asOrderedCollection removeIndex:6
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1330
     #($a $b $c $d $e $f $g) removeIndex:3
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1331
    "
77
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
  1332
!
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
  1333
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1334
removeLast
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1335
    "remove the last element of the receiver and return it.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1336
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1337
     Notice, that this is modifies the receiver NOT a copy.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1338
     Also note, that it may be a slow operation for some collections,
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1339
     due to the grow:-message, which is inefficient for fixed size
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1340
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1341
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1342
    ^ self removeAtIndex:(self size)
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1343
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1344
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1345
     |a|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1346
     a := #(1 2 3 4 5 6).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1347
     a removeLast.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1348
     a
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1349
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1350
! !
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1351
11407
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1352
!SequenceableCollection methodsFor:'combinatoric'!
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1353
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1354
combinationsDo: aBlock
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  1355
    "Repeatly evaluate aBlock with all combinations of elements from the receiver's elements. 
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  1356
     The receiver's elements must be collections of the individuals to be taken for the combinations"
11407
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1357
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1358
    self combinationsStartingAt:1 prefix:#() do:aBlock
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1359
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1360
    "
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1361
     (Array 
11410
6fb56230f053 changed #combinationsDo:
Claus Gittinger <cg@exept.de>
parents: 11408
diff changeset
  1362
            with:($a to:$d)) 
6fb56230f053 changed #combinationsDo:
Claus Gittinger <cg@exept.de>
parents: 11408
diff changeset
  1363
        combinationsDo:[:eachCombination | Transcript showCR: eachCombination]
6fb56230f053 changed #combinationsDo:
Claus Gittinger <cg@exept.de>
parents: 11408
diff changeset
  1364
    "
6fb56230f053 changed #combinationsDo:
Claus Gittinger <cg@exept.de>
parents: 11408
diff changeset
  1365
    "
6fb56230f053 changed #combinationsDo:
Claus Gittinger <cg@exept.de>
parents: 11408
diff changeset
  1366
     (Array 
11407
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1367
            with:($a to:$d)
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1368
            with:(1 to: 4)) 
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1369
        combinationsDo:[:eachCombination | Transcript showCR: eachCombination]
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1370
    "
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1371
    "
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1372
     will print a1, a2, a3, a4, b1, ... , d1, d2, d3, d4
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1373
    "
11408
3c3b1861c6fd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11407
diff changeset
  1374
    "all combinations of two letters are generated with:
3c3b1861c6fd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11407
diff changeset
  1375
     (Array 
3c3b1861c6fd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11407
diff changeset
  1376
            with:($a to:$z)
3c3b1861c6fd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11407
diff changeset
  1377
            with:($a to:$z)) 
3c3b1861c6fd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11407
diff changeset
  1378
        combinationsDo:[:eachCombination | Transcript showCR: eachCombination]
3c3b1861c6fd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11407
diff changeset
  1379
    "
11432
261ae0f98112 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11431
diff changeset
  1380
    "
261ae0f98112 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11431
diff changeset
  1381
     (Array 
261ae0f98112 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11431
diff changeset
  1382
            with:#(1 2 3 4 5 6 7 8 9)
261ae0f98112 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11431
diff changeset
  1383
            with:#(A)) 
261ae0f98112 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11431
diff changeset
  1384
        combinationsDo:[:eachCombination | Transcript showCR: eachCombination]
261ae0f98112 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11431
diff changeset
  1385
    "
11407
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1386
!
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1387
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1388
combinationsStartingAt:anInteger prefix:prefix do:aBlock
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1389
    "a helper for combinationsDo:"
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1390
11431
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1391
    |loopedElement|
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1392
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1393
    loopedElement := self at:anInteger.
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1394
11407
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1395
    anInteger == self size ifTrue:[
11431
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1396
        loopedElement do:[:el | aBlock value:(prefix copyWith:el)].
11407
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1397
        ^ self.
11431
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1398
    ].
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1399
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1400
    loopedElement do:[:el |
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1401
        |newPrefix|
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1402
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1403
        newPrefix := (prefix copyWith:el).
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1404
        self combinationsStartingAt:anInteger+1 prefix:newPrefix do:aBlock
11407
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1405
    ].
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1406
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1407
    "
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1408
     (Array 
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1409
            with:($a to:$d)
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1410
            with:(1 to: 4)) 
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1411
        combinationsDo:[:eachCombination | Transcript showCR: eachCombination]
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1412
    "
11431
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1413
    "
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1414
     (Array 
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1415
            with:#(1 2 3 4 5 6 7 8 9)
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1416
            with:#(A)) 
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1417
        combinationsDo:[:eachCombination | Transcript showCR: eachCombination]
2aa4cc3585dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11410
diff changeset
  1418
    "
11407
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1419
!
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1420
11462
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1421
lexicographicPermutationsDo:aBlock
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1422
    "Repeatly evaluate aBlock with a single copy of the receiver. 
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1423
     Reorder the copy so that aBlock is presented all (self size factorial) possible 
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1424
     permutations in lexicographical order (i.e. sorted by size).
11932
55c23ef9eec7 comments
Claus Gittinger <cg@exept.de>
parents: 11915
diff changeset
  1425
11462
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1426
     Notice, that the swapping occurs within a buffered copy, so the block will receive
11932
55c23ef9eec7 comments
Claus Gittinger <cg@exept.de>
parents: 11915
diff changeset
  1427
     the identical same collection (but with different contents) every time.
55c23ef9eec7 comments
Claus Gittinger <cg@exept.de>
parents: 11915
diff changeset
  1428
     This non-functional kludge was done for performance, as we had to generate huge amounts
55c23ef9eec7 comments
Claus Gittinger <cg@exept.de>
parents: 11915
diff changeset
  1429
     of permuted copies. The user of this function must be careful in the block, 
55c23ef9eec7 comments
Claus Gittinger <cg@exept.de>
parents: 11915
diff changeset
  1430
     to copy the argument, if it has to be stored somewhere."
11462
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1431
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1432
    self shallowCopy lexicographicPermutationsStartingAt:1 do:aBlock
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1433
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1434
    "
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1435
     (1 to: 4) asArray lexicographicPermutationsDo:[:each | Transcript showCR: each printString]
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1436
    "
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1437
!
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1438
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1439
lexicographicPermutationsStartingAt:anInteger do:aBlock
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1440
    "a helper for lexicographicPermutationsDo:"
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1441
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1442
    |mySize values indices|
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1443
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1444
    mySize := self size.
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1445
    anInteger > mySize ifTrue: [^ self].
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1446
    anInteger = mySize ifTrue: [^ aBlock value: self].
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1447
    values := self copyFrom:anInteger to:mySize.
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1448
    indices := (anInteger to:mySize) asArray.
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1449
    values sortWith:indices.
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1450
    indices do:[:i |
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1451
        self swap: anInteger with: i.
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1452
        self lexicographicPermutationsStartingAt:(anInteger + 1) do: aBlock.
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1453
        self swap: anInteger with: i
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1454
    ]
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1455
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1456
    "
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1457
     #(1 2 3 4 5) lexicographicPermutationsDo: [:each | Transcript showCR: each]
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1458
    "
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1459
!
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1460
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1461
permutationsDo:aBlock
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1462
    "Repeatly evaluate aBlock with a single copy of the receiver. 
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1463
     Reorder the copy so that aBlock is presented all (self size factorial) possible permutations.
11932
55c23ef9eec7 comments
Claus Gittinger <cg@exept.de>
parents: 11915
diff changeset
  1464
11462
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1465
     Notice, that the swapping occurs within a buffered copy, so the block will receive
11932
55c23ef9eec7 comments
Claus Gittinger <cg@exept.de>
parents: 11915
diff changeset
  1466
     the identical same collection (but with different contents) every time.
55c23ef9eec7 comments
Claus Gittinger <cg@exept.de>
parents: 11915
diff changeset
  1467
     This non-functional kludge was done for performance, as we had to generate huge amounts
55c23ef9eec7 comments
Claus Gittinger <cg@exept.de>
parents: 11915
diff changeset
  1468
     of permuted copies. The user of this function must be careful in the block, 
55c23ef9eec7 comments
Claus Gittinger <cg@exept.de>
parents: 11915
diff changeset
  1469
     to copy the argument, if it has to be stored somewhere."
11407
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1470
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1471
    self shallowCopy permutationsStartingAt:1 do:aBlock
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1472
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1473
    "
11462
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1474
     (1 to: 4) asArray permutationsDo:[:each | Transcript showCR: each printString]
11407
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1475
    "
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1476
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1477
    "Modified: / 13.11.2001 / 13:37:35 / cg"
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1478
!
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1479
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1480
permutationsStartingAt: anInteger do: aBlock
11462
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1481
    "a helper for permutationsDo:"
11407
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1482
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1483
    |mySize|
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1484
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1485
    mySize := self size.
11462
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1486
    anInteger > mySize ifTrue: [^ self].
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1487
    anInteger = mySize ifTrue: [^ aBlock value: self].
11407
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1488
    anInteger to:mySize do:[:i |
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1489
        self swap: anInteger with: i.
11462
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1490
        self permutationsStartingAt:(anInteger + 1) do: aBlock.
11407
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1491
        self swap: anInteger with: i
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1492
    ]
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1493
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1494
    "
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1495
     #(1 2 3 4 5) permutationsDo: [:each | Transcript showCR: each]
11462
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1496
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1497
    notice the copy - Transcript simply buffers incoming strings !!!!!!
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1498
     'hello' permutationsDo: [:each | Transcript showCR: each copy]
11407
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1499
    "
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1500
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1501
    "Modified: / 22-10-2007 / 13:51:12 / cg"
11462
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1502
!
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1503
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1504
permutationsStartingAt:anInteger with:anotherCollection do:aBlock
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1505
    "a helper for permutationsDo:"
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1506
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1507
    |mySize|
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1508
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1509
    mySize := self size.
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1510
    anInteger > mySize ifTrue: [^ self].
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1511
    anInteger = mySize ifTrue: [^ aBlock value:self value:anotherCollection].
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1512
    anInteger to:mySize do:[:i |
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1513
        self swap: anInteger with:i.
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1514
        anotherCollection swap: anInteger with:i.
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1515
        self permutationsStartingAt:(anInteger + 1) with:anotherCollection do:aBlock.
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1516
        self swap:anInteger with: i.
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1517
        anotherCollection swap:anInteger with:i.
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1518
    ]
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1519
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1520
    "
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1521
     #(1 2 3 4 5) permutationsDo: [:each | Transcript showCR: each]
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1522
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1523
    notice the copy - Transcript simply buffers incoming strings !!!!!!
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1524
     'hello' permutationsDo: [:each | Transcript showCR: each copy]
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1525
    "
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1526
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1527
    "Modified: / 22-10-2007 / 13:51:12 / cg"
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1528
!
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1529
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1530
permutationsWith:anotherCollection do:aBlock
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1531
    "Repeatly evaluate aBlock with a single copy of the receiver. 
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1532
     Reorder the copy so that aBlock is presented all (self size factorial) possible permutations.
11932
55c23ef9eec7 comments
Claus Gittinger <cg@exept.de>
parents: 11915
diff changeset
  1533
11462
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1534
     Notice, that the swapping occurs within a buffered copy, so the block will receive
11932
55c23ef9eec7 comments
Claus Gittinger <cg@exept.de>
parents: 11915
diff changeset
  1535
     the identical same collection (but with different contents) every time.
55c23ef9eec7 comments
Claus Gittinger <cg@exept.de>
parents: 11915
diff changeset
  1536
     This non-functional kludge was done for performance, as we had to generate huge amounts
55c23ef9eec7 comments
Claus Gittinger <cg@exept.de>
parents: 11915
diff changeset
  1537
     of permuted copies. The user of this function must be careful in the block, 
55c23ef9eec7 comments
Claus Gittinger <cg@exept.de>
parents: 11915
diff changeset
  1538
     to copy the argument, if it has to be stored somewhere."
11462
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1539
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1540
    self shallowCopy permutationsStartingAt:1 with:anotherCollection shallowCopy do:aBlock
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1541
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1542
    "
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1543
     (1 to: 4) asArray permutationsWith:'abcd' 
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1544
        do:[:each1 :each2 | Transcript showCR: each2 copy]
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1545
    "
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1546
6e254248bf33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11461
diff changeset
  1547
    "Modified: / 13.11.2001 / 13:37:35 / cg"
11407
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1548
! !
c4363070cd63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11279
diff changeset
  1549
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1550
!SequenceableCollection methodsFor:'comparing'!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1551
8183
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1552
< aCollection
8311
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1553
    "compare two sequenceable collections"
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1554
8311
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1555
    |size               "{ Class: SmallInteger }"
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1556
     aCollectionSize    "{ Class: SmallInteger }"
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1557
     min                "{ Class: SmallInteger }"
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1558
     v1 v2|
8183
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1559
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1560
    size := self size.
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1561
    aCollectionSize := aCollection size.
9478
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1562
    aCollectionSize == 0 ifTrue:[
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1563
        aCollection isSequenceable ifFalse:[
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1564
            self error:'cannot compare non-(sequenceable) collection'.
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1565
        ].
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1566
    ].
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1567
8183
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1568
    size < aCollectionSize ifTrue:[
9478
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1569
        min := size
8183
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1570
    ] ifFalse:[
9478
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1571
        min := aCollectionSize
8183
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1572
    ].
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1573
8311
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1574
    1 to: min do: [:i|
9478
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1575
        v1 := self at: i.
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1576
        v2 := aCollection at: i.
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1577
        (v1 == v2 or:[v1 = v2]) ifFalse:[^ v1 < v2]
8183
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1578
    ].
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1579
    ^ size < aCollectionSize
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1580
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1581
    "
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1582
      #(1 2 3) < #(1)
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1583
      #(1 2 3) < #(2)
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1584
      #(1 2 3) < #()
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1585
      #(1 2 3) < #(1 2 3)
8311
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1586
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1587
      |a b|
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1588
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1589
      a := 'hello world'.
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1590
      b := a copy.
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1591
      Time millisecondsToRun:[
9478
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1592
        1000000 timesRepeat:[
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1593
            a < b
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1594
        ]
8311
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1595
      ]
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1596
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1597
      |a b|
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1598
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1599
      a := CharacterArray fromString:'hello world'.
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1600
      b := a copy.
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1601
      Time millisecondsToRun:[
9478
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1602
        1000000 timesRepeat:[
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1603
            a < b
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1604
        ]
8311
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1605
      ]
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1606
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1607
      |a b|
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1608
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1609
      a := #[1 2 3 4 5 6 7 8 9 10 11].
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1610
      b := a copy.
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1611
      Time millisecondsToRun:[
9478
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1612
        1000000 timesRepeat:[
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1613
           a < b
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1614
        ]
8311
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1615
      ]
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1616
    "
9478
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1617
652133ccefef dont be confused when comparing against a non-collection.
Claus Gittinger <cg@exept.de>
parents: 9454
diff changeset
  1618
    "Modified: / 04-08-2006 / 11:45:10 / cg"
8311
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1619
!
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1620
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1621
<= aCollection
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1622
    "Compare the receiver with the argument and return true if the
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1623
     receiver is less than or equal to the argument. Otherwise return false"
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1624
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1625
    ^ (aCollection < self) not
8183
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1626
!
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  1627
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1628
= aCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1629
    "return true if the receiver and aCollection represent collections
12290
d8db0b969e43 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12289
diff changeset
  1630
     with equal contents, and if they are of the same species."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1631
8311
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1632
    | stop "{ Class: SmallInteger }" |
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1633
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1634
    (aCollection == self) ifTrue:[^true].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1635
    (aCollection isSequenceable) ifFalse:[^false].
9366
218fa4e2b183 a = b vs. b = a if any is a string
fm
parents: 9358
diff changeset
  1636
    (aCollection species = self species) ifFalse:[^false].
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1637
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1638
    stop := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1639
    stop == (aCollection size) ifFalse:[^false].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1640
8311
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1641
    1 to:stop do:[:index|
9366
218fa4e2b183 a = b vs. b = a if any is a string
fm
parents: 9358
diff changeset
  1642
        (self at:index) = (aCollection at:index) ifFalse:[^false].
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1643
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1644
    ^ true
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1645
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1646
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1647
     #(1 2 3 4 5) = #(1 2 3 4 5)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1648
     #($1 $2 $3 $4 $5) = #(1 2 3 4 5)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1649
     #($1 $2 $3 $4 $5) = '12345'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1650
     #($1 $2 $3 $4 $5) = '54321' asSortedCollection
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1651
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1652
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1653
8311
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1654
> aCollection
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1655
    "Compare the receiver with the argument and return true if the
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1656
     receiver is greater than the argument.
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1657
     Otherwise return false."
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1658
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1659
    ^ aCollection < self
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1660
!
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1661
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1662
>= aCollection
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1663
    "Compare the receiver with the argument and return true if the
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1664
     receiver is greater than or equal to the argument.
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1665
     Otherwise return false."
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1666
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1667
    ^ (self < aCollection) not
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1668
!
bca1157b6a2f Move #<= and #>= to SequenceableCollection.
Stefan Vogel <sv@exept.de>
parents: 8276
diff changeset
  1669
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1670
commonPrefixWith:aCollection
6507
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1671
    "return the common prefix of myself and the argument, aCollection.
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1672
     If there is none, an empty collection is returned."
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1673
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1674
    ^ self commonPrefixWith:aCollection ignoreCase:false
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1675
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1676
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1677
     'hello' commonPrefixWith:'hello'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1678
     'hello' commonPrefixWith:'hElLo'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1679
     'hello' commonPrefixWith:'hello world'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1680
     'hello' commonPrefixWith:'hElLo WoRlD'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1681
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1682
     'hello world' commonPrefixWith:'hello'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1683
     'hello WoRlD' commonPrefixWith:'hElLo'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1684
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1685
     'abcd' commonPrefixWith:'bcde'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1686
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1687
     'abcd' commonPrefixWith:'abab'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1688
     'abcd' commonPrefixWith:'ab'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1689
     'abcd' commonPrefixWith:'ababab'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1690
     'abcd' commonPrefixWith:'abcdef'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1691
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1692
     'abab' commonPrefixWith:'abcd'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1693
     'ab'   commonPrefixWith:'abcd'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1694
     'ababab' commonPrefixWith:'abcd'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1695
     'abcdef' commonPrefixWith:'abcd'
6507
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1696
    "
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1697
!
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1698
6504
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1699
commonPrefixWith:aCollection ignoreCase:ignoreCase
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1700
    "return the common prefix of myself and the argument, aCollection.
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1701
     If there is none, an empty collection is returned."
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1702
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1703
    |matchLen|
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1704
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1705
    matchLen := self size min:aCollection size.
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1706
    1 to:matchLen do:[:idx |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1707
	|elHere elThere same|
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1708
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1709
	elHere := self at:idx.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1710
	elThere := aCollection at:idx.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1711
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1712
	ignoreCase ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1713
	    same := elHere sameAs:elThere
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1714
	] ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1715
	    same := elHere = elThere
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1716
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1717
	same ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1718
	    ^ self copyTo:(idx - 1).
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1719
	]
6504
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1720
    ].
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1721
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1722
    ^ self copyTo:matchLen
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1723
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1724
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1725
     'hello' commonPrefixWith:'hello' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1726
     'hello' commonPrefixWith:'hElLo' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1727
     'hello' commonPrefixWith:'hello world' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1728
     'hello' commonPrefixWith:'hElLo WoRlD' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1729
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1730
     'hello world' commonPrefixWith:'hello' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1731
     'hello WoRlD' commonPrefixWith:'hElLo' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1732
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1733
     'abcd' commonPrefixWith:'bcde' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1734
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1735
     'abcd' commonPrefixWith:'abab' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1736
     'abcd' commonPrefixWith:'ab'   ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1737
     'abcd' commonPrefixWith:'ababab'   ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1738
     'abcd' commonPrefixWith:'abcdef'   ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1739
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1740
     'abab' commonPrefixWith:'abcd' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1741
     'ab'   commonPrefixWith:'abcd'   ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1742
     'ababab' commonPrefixWith:'abcd'   ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1743
     'abcdef' commonPrefixWith:'abcd'   ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1744
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1745
!
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1746
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1747
commonSuffixWith:aCollection
6507
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1748
    "return the common suffix (tail) of myself and the argument, aCollection.
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1749
     If there is none, an empty collection is returned."
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1750
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1751
    ^ self commonSuffixWith:aCollection ignoreCase:false
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1752
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1753
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1754
     'hello' commonSuffixWith:'hello'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1755
     'hello' commonSuffixWith:'hElLo'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1756
     'hello' commonSuffixWith:'hello world'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1757
     'hello' commonSuffixWith:'hElLo WoRlD'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1758
     'hello2 world' commonSuffixWith:'hello world'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1759
     'hello2 world' commonSuffixWith:'hElLo WoRlD'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1760
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1761
     'hello world' commonSuffixWith:'world'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1762
     'hello WoRlD' commonSuffixWith:'world'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1763
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1764
     'dcba' commonSuffixWith:'edcb'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1765
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1766
     'dcba' commonSuffixWith:'baba'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1767
     'dcba' commonSuffixWith:'ba'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1768
     'dcba' commonSuffixWith:'bababa'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1769
     'dcba' commonSuffixWith:'fdcba'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1770
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1771
     'baba' commonSuffixWith:'dcba'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1772
     'ba'   commonSuffixWith:'dcba'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1773
     'bababa' commonSuffixWith:'dcba'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1774
     'fdcba' commonSuffixWith:'dcba'
6507
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1775
    "
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1776
!
e49a4ea0dea7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6504
diff changeset
  1777
6504
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1778
commonSuffixWith:aCollection ignoreCase:ignoreCase
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1779
    "return the common suffix (tail) of myself and the argument, aCollection.
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1780
     If there is none, an empty collection is returned."
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1781
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1782
    |matchLen l1 l2|
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1783
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1784
    l1 := self size.
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1785
    l2 := aCollection size.
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1786
    matchLen := l1 min:l2.
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1787
    1 to:matchLen do:[:idx |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1788
	|elHere elThere same|
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1789
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1790
	elHere := self at:(l1 - idx + 1).
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1791
	elThere := aCollection at:(l2 - idx + 1).
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1792
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1793
	ignoreCase ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1794
	    same := elHere sameAs:elThere
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1795
	] ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1796
	    same := elHere = elThere
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1797
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1798
	same ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1799
	    ^ self copyFrom:(l1 - idx + 2).
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1800
	]
6504
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1801
    ].
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1802
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1803
    ^ self copyFrom:(l1 - matchLen + 1)
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1804
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1805
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1806
     'hello' commonSuffixWith:'hello' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1807
     'hello' commonSuffixWith:'hElLo' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1808
     'hello' commonSuffixWith:'hello world' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1809
     'hello' commonSuffixWith:'hElLo WoRlD' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1810
     'hello2 world' commonSuffixWith:'hello world' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1811
     'hello2 world' commonSuffixWith:'hElLo WoRlD' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1812
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1813
     'hello world' commonSuffixWith:'world' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1814
     'hello WoRlD' commonSuffixWith:'world' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1815
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1816
     'dcba' commonSuffixWith:'edcb' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1817
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1818
     'dcba' commonSuffixWith:'baba' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1819
     'dcba' commonSuffixWith:'ba'   ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1820
     'dcba' commonSuffixWith:'bababa'   ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1821
     'dcba' commonSuffixWith:'fdcba'   ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1822
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1823
     'baba' commonSuffixWith:'dcba' ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1824
     'ba'   commonSuffixWith:'dcba'   ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1825
     'bababa' commonSuffixWith:'dcba'   ignoreCase:true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1826
     'fdcba' commonSuffixWith:'dcba'   ignoreCase:true
6504
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1827
    "
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1828
!
8001aa813fac added commonPrefix/commonSuffix
Claus Gittinger <cg@exept.de>
parents: 6183
diff changeset
  1829
5813
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1830
deepSameContentsAs:aCollection
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1831
    "return true, if the receiver and the arg have the same contents
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1832
     in both the named instance vars and any indexed instVars.
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1833
     This method descends into referenced objects, where #sameContentsAs: does not descend.
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1834
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1835
     Redefinded, so that SequenceableCollections are equivalent, especially OrderedCollections with
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1836
     unused space"
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1837
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1838
    |index "{ Class: SmallInteger }"
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1839
     stop  "{ Class: SmallInteger }" |
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1840
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1841
    (aCollection == self) ifTrue:[^true].
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1842
    (aCollection isSequenceable) ifFalse:[^false].
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1843
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1844
    stop := self size.
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1845
    stop == (aCollection size) ifFalse:[^false].
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1846
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1847
    index := 1.
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1848
    [index <= stop] whileTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1849
	((self at:index) deepSameContentsAs:(aCollection at:index)) ifFalse:[^false].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1850
	index := index + 1
5813
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1851
    ].
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1852
    ^ true
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1853
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1854
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1855
     #(1 2 3 4 5) deepSameContentsAs: #(1 2 3 4 5)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1856
     #($1 $2 $3 $4 $5) deepSameContentsAs: #(1 2 3 4 5)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1857
     #($1 $2 $3 $4 $5) deepSameContentsAs: '12345'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1858
     #($1 $2 $3 $4 $5) deepSameContentsAs: '54321' asSortedCollection
5813
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1859
    "
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1860
!
27091e298994 Define #deepSameContentsAs:
Stefan Vogel <sv@exept.de>
parents: 5717
diff changeset
  1861
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1862
endsWith:aCollection
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  1863
    "return true, if the receiver's last elements match those
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1864
     of aCollection"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1865
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1866
    |index1 "{ Class: SmallInteger }"
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1867
     index2 "{ Class: SmallInteger }"
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1868
     stop   "{ Class: SmallInteger }"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1869
     sz     "{ Class: SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1870
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1871
    (aCollection == self) ifTrue:[^ true].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1872
    (aCollection isSequenceable) ifFalse:[^ false].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1873
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1874
    stop := aCollection size.
77
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
  1875
    sz := self size.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1876
    stop > sz ifTrue:[^false].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1877
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1878
    index1 := sz.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1879
    index2 := stop.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1880
    [index2 > 0] whileTrue:[
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  1881
        (self at:index1) = (aCollection at:index2) ifFalse:[^ false].
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  1882
        index1 := index1 - 1.
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  1883
        index2 := index2 - 1
77
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
  1884
    ].
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1885
    ^ true
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1886
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1887
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1888
     'abcde' endsWith:#($d $e)
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1889
     #[1 2 3 4] endsWith:#(3 4)
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1890
     #(1 2 3 4) asOrderedCollection endsWith:#(3 4)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1891
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1892
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1893
7278
7731ac602371 +endsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7264
diff changeset
  1894
endsWithAnyOf:aCollectionOfCollections
7279
c71ed5a8ae86 +startsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7278
diff changeset
  1895
    "return true, if the receiver endswith any in aCollection"
7278
7731ac602371 +endsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7264
diff changeset
  1896
7731ac602371 +endsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7264
diff changeset
  1897
    ^ aCollectionOfCollections contains:[:eachTriedEnd | self endsWith:eachTriedEnd]
7731ac602371 +endsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7264
diff changeset
  1898
7731ac602371 +endsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7264
diff changeset
  1899
    "
7731ac602371 +endsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7264
diff changeset
  1900
     'abcde' endsWithAnyOf:#('DE' 'de')
7731ac602371 +endsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7264
diff changeset
  1901
     'abcde' endsWithAnyOf:#('DF' 'df')
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1902
     #[1 2 3 4] endsWithAnyOf:#( #(3 5) #(2 4))
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1903
     #[1 2 3 4] endsWithAnyOf:#( #(3 4) #(2 4))
7278
7731ac602371 +endsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7264
diff changeset
  1904
    "
7731ac602371 +endsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7264
diff changeset
  1905
!
7731ac602371 +endsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7264
diff changeset
  1906
11820
607fb1520832 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11711
diff changeset
  1907
hasEqualElements: otherCollection
607fb1520832 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11711
diff changeset
  1908
    "Answer whether the receiver's size is the same as otherCollection's
12290
d8db0b969e43 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12289
diff changeset
  1909
     size, and each of the receiver's elements equal the corresponding 
d8db0b969e43 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12289
diff changeset
  1910
     element of otherCollection.
d8db0b969e43 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12289
diff changeset
  1911
     This should probably replace the current definition of #= ."
d8db0b969e43 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12289
diff changeset
  1912
d8db0b969e43 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12289
diff changeset
  1913
    ^ self isSameSequenceAs:otherCollection
11820
607fb1520832 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11711
diff changeset
  1914
!
607fb1520832 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11711
diff changeset
  1915
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1916
hash
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1917
    "return a hash key for the receiver"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1918
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1919
    "this hash is stupid - but for larger collections, the hashing
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1920
     time can become much bigger than the time lost in added probing.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1921
     Time will show ..."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1922
7522
7a8022068bb5 avoid Large arithmetic when computing the hashValue.
Claus Gittinger <cg@exept.de>
parents: 7490
diff changeset
  1923
    |mySize h|
3653
cc018fcae490 added #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  1924
cc018fcae490 added #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  1925
    mySize := self size.
cc018fcae490 added #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  1926
    mySize == 0 ifTrue:[^ 0].
7522
7a8022068bb5 avoid Large arithmetic when computing the hashValue.
Claus Gittinger <cg@exept.de>
parents: 7490
diff changeset
  1927
7a8022068bb5 avoid Large arithmetic when computing the hashValue.
Claus Gittinger <cg@exept.de>
parents: 7490
diff changeset
  1928
    h := (self at:1) hash.
7a8022068bb5 avoid Large arithmetic when computing the hashValue.
Claus Gittinger <cg@exept.de>
parents: 7490
diff changeset
  1929
    h := h bitAnd:16r01FFFFFF.
7a8022068bb5 avoid Large arithmetic when computing the hashValue.
Claus Gittinger <cg@exept.de>
parents: 7490
diff changeset
  1930
    h := (h bitShift:5) + (self at:mySize) hash.
7a8022068bb5 avoid Large arithmetic when computing the hashValue.
Claus Gittinger <cg@exept.de>
parents: 7490
diff changeset
  1931
    h := h bitAnd:16r01FFFFFF.
7a8022068bb5 avoid Large arithmetic when computing the hashValue.
Claus Gittinger <cg@exept.de>
parents: 7490
diff changeset
  1932
    h := (h bitShift:5) + self size.
7a8022068bb5 avoid Large arithmetic when computing the hashValue.
Claus Gittinger <cg@exept.de>
parents: 7490
diff changeset
  1933
    ^ h bitAnd:16r3FFFFFFF.
7a8022068bb5 avoid Large arithmetic when computing the hashValue.
Claus Gittinger <cg@exept.de>
parents: 7490
diff changeset
  1934
7a8022068bb5 avoid Large arithmetic when computing the hashValue.
Claus Gittinger <cg@exept.de>
parents: 7490
diff changeset
  1935
    "/ cg: the code below may lead to largeInteger arithmetic, which was slow...
7a8022068bb5 avoid Large arithmetic when computing the hashValue.
Claus Gittinger <cg@exept.de>
parents: 7490
diff changeset
  1936
    "/     ^ ((((self first hash bitShift:5) + self last hash) bitShift:5) + self size hash) bitAnd:16r3FFFFFFF.
6749
d81bbfd885d9 hash: changed to be useful for intervals too.
Claus Gittinger <cg@exept.de>
parents: 6744
diff changeset
  1937
d81bbfd885d9 hash: changed to be useful for intervals too.
Claus Gittinger <cg@exept.de>
parents: 6744
diff changeset
  1938
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1939
     #(1 2 3 4 5 6) hash
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1940
     (1 to:6) hash
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1941
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1942
     #(1 2 3 4 5.0) asOrderedCollection hash
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1943
     #(1 2 3 4 5) hash
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1944
    "
3653
cc018fcae490 added #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  1945
cc018fcae490 added #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  1946
    "Modified: / 27.3.1998 / 17:33:49 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1947
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1948
5275
87127c0e3167 added identity-element compare: #identicalContentsAs:
Claus Gittinger <cg@exept.de>
parents: 5231
diff changeset
  1949
identicalContentsAs:aCollection
87127c0e3167 added identity-element compare: #identicalContentsAs:
Claus Gittinger <cg@exept.de>
parents: 5231
diff changeset
  1950
    "return true if the receiver and aCollection represent collections
87127c0e3167 added identity-element compare: #identicalContentsAs:
Claus Gittinger <cg@exept.de>
parents: 5231
diff changeset
  1951
     with identical contents. This is much like #=, but compares
87127c0e3167 added identity-element compare: #identicalContentsAs:
Claus Gittinger <cg@exept.de>
parents: 5231
diff changeset
  1952
     elements using #== instead of #=."
87127c0e3167 added identity-element compare: #identicalContentsAs:
Claus Gittinger <cg@exept.de>
parents: 5231
diff changeset
  1953
6129
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  1954
    ^ self
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1955
	sameContentsAs:aCollection
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1956
	whenComparedWith:[:a :b | a == b]
6130
645bc4c27f3d sameContentsAs:whenComparedUsing: -> sameContentsAs:whenComparedWith:
Claus Gittinger <cg@exept.de>
parents: 6129
diff changeset
  1957
6129
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  1958
"/    |index "{ Class: SmallInteger }"
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  1959
"/     stop  "{ Class: SmallInteger }" |
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  1960
"/
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  1961
"/    (aCollection == self) ifTrue:[^ true].
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  1962
"/    (aCollection size == self size) ifFalse:[^ false].
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  1963
"/    (aCollection isSequenceable) ifFalse:[^ aCollection identicalContentsAs:self].
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  1964
"/
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  1965
"/    stop := self size.
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  1966
"/    stop == (aCollection size) ifFalse:[^ false].
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  1967
"/
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  1968
"/    index := 1.
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  1969
"/    [index <= stop] whileTrue:[
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  1970
"/        (self at:index) == (aCollection at:index) ifFalse:[^ false].
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  1971
"/        index := index + 1
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  1972
"/    ].
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  1973
"/    ^ true
5275
87127c0e3167 added identity-element compare: #identicalContentsAs:
Claus Gittinger <cg@exept.de>
parents: 5231
diff changeset
  1974
87127c0e3167 added identity-element compare: #identicalContentsAs:
Claus Gittinger <cg@exept.de>
parents: 5231
diff changeset
  1975
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1976
     #(1 2 3 4 5) = #(1 2 3 4 5)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1977
     #(1 2 3 4 5) = #(1.0 2 3 4.0 5)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1978
     #($1 $2 $3 $4 $5) = '12345'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1979
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1980
     #(1 2 3 4 5) identicalContentsAs:#(1 2 3 4 5)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1981
     #(1 2 3 4 5) identicalContentsAs: #(1.0 2 3 4.0 5)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1982
     #($1 $2 $3 $4 $5) identicalContentsAs: '12345'
5275
87127c0e3167 added identity-element compare: #identicalContentsAs:
Claus Gittinger <cg@exept.de>
parents: 5231
diff changeset
  1983
    "
87127c0e3167 added identity-element compare: #identicalContentsAs:
Claus Gittinger <cg@exept.de>
parents: 5231
diff changeset
  1984
6130
645bc4c27f3d sameContentsAs:whenComparedUsing: -> sameContentsAs:whenComparedWith:
Claus Gittinger <cg@exept.de>
parents: 6129
diff changeset
  1985
    "Modified: / 31.10.2001 / 11:30:18 / cg"
5275
87127c0e3167 added identity-element compare: #identicalContentsAs:
Claus Gittinger <cg@exept.de>
parents: 5231
diff changeset
  1986
!
87127c0e3167 added identity-element compare: #identicalContentsAs:
Claus Gittinger <cg@exept.de>
parents: 5231
diff changeset
  1987
12289
7fcbb93d365e changed: #isSameSequenceAs:
Claus Gittinger <cg@exept.de>
parents: 12187
diff changeset
  1988
isSameSequenceAs:otherCollection
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  1989
    "Answer whether the receiver's size is the same as otherCollection's size,
12290
d8db0b969e43 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12289
diff changeset
  1990
     and each of the receiver's elements equal the corresponding element of otherCollection.
d8db0b969e43 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12289
diff changeset
  1991
     This should probably replace the current definition of #= ."
6118
bea02c0010f5 +isSameSequenceAs:
Claus Gittinger <cg@exept.de>
parents: 6054
diff changeset
  1992
bea02c0010f5 +isSameSequenceAs:
Claus Gittinger <cg@exept.de>
parents: 6054
diff changeset
  1993
    | size |
bea02c0010f5 +isSameSequenceAs:
Claus Gittinger <cg@exept.de>
parents: 6054
diff changeset
  1994
12289
7fcbb93d365e changed: #isSameSequenceAs:
Claus Gittinger <cg@exept.de>
parents: 12187
diff changeset
  1995
    (size := self size) = otherCollection size ifFalse: [^ false].
7fcbb93d365e changed: #isSameSequenceAs:
Claus Gittinger <cg@exept.de>
parents: 12187
diff changeset
  1996
    otherCollection isSequenceable ifFalse: [^ false].
7fcbb93d365e changed: #isSameSequenceAs:
Claus Gittinger <cg@exept.de>
parents: 12187
diff changeset
  1997
7fcbb93d365e changed: #isSameSequenceAs:
Claus Gittinger <cg@exept.de>
parents: 12187
diff changeset
  1998
    1 to:size do:[:index |
7fcbb93d365e changed: #isSameSequenceAs:
Claus Gittinger <cg@exept.de>
parents: 12187
diff changeset
  1999
        (self at: index) = (otherCollection at: index) ifFalse: [^ false]
6118
bea02c0010f5 +isSameSequenceAs:
Claus Gittinger <cg@exept.de>
parents: 6054
diff changeset
  2000
    ].
bea02c0010f5 +isSameSequenceAs:
Claus Gittinger <cg@exept.de>
parents: 6054
diff changeset
  2001
    ^ true
bea02c0010f5 +isSameSequenceAs:
Claus Gittinger <cg@exept.de>
parents: 6054
diff changeset
  2002
!
bea02c0010f5 +isSameSequenceAs:
Claus Gittinger <cg@exept.de>
parents: 6054
diff changeset
  2003
12938
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2004
sameContentsAs:aCollection
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2005
    "return true, if the receiver and the arg have the same contents.
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2006
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2007
     Redefinded, so that SequenceableCollections are equivalent, especially OrderedCollections with
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2008
     unused space"
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2009
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2010
    |index "{ Class: SmallInteger }"
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2011
     stop  "{ Class: SmallInteger }" |
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2012
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2013
    (aCollection == self) ifTrue:[^true].
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2014
    (aCollection isSequenceable) ifFalse:[
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2015
        aCollection with:self do:[:e1 :e2 |
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2016
            (e1 = e2) ifFalse:[^false].
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2017
        ].
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2018
        ^ true
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2019
    ].
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2020
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2021
    stop := self size.
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2022
    stop == (aCollection size) ifFalse:[^false].
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2023
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2024
    index := 1.
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2025
    [index <= stop] whileTrue:[
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2026
        ((self at:index) = (aCollection at:index)) ifFalse:[^false].
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2027
        index := index + 1
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2028
    ].
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2029
    ^ true
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2030
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2031
    "
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2032
     #(1 2 3 4 5) sameContentsAs: #(1 2 3 4 5) copy
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2033
     #($1 $2 $3 $4 $5) sameContentsAs: #(1 2 3 4 5) 
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2034
     #($1 $2 $3 $4 $5) sameContentsAs: '12345'      
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2035
     #($1 $2 $3 $4 $5) sameContentsAs: '54321' asSortedCollection 
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2036
    "
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2037
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2038
    "Created: / 09-07-2010 / 12:44:28 / sr"
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2039
!
9fb4e6f91c83 added: #sameContentsAs:
sr
parents: 12888
diff changeset
  2040
6130
645bc4c27f3d sameContentsAs:whenComparedUsing: -> sameContentsAs:whenComparedWith:
Claus Gittinger <cg@exept.de>
parents: 6129
diff changeset
  2041
sameContentsAs:aCollection whenComparedWith:compareBlock
6129
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2042
    "return true if the receiver and aCollection represent collections
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2043
     with the same contents, using compareSelector to compare elements.
6129
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2044
     This is a generic version of #= or #identicalContentsAs:;
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2045
     i.e. #= is the same as #sameContentsAs:whenComparedUsing:#=
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2046
     and #identicalContentsAs: is the same as #sameContentsAs:whenComparedUsing:#==.
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2047
    "
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2048
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2049
    |index "{ Class: SmallInteger }"
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2050
     stop  "{ Class: SmallInteger }" |
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2051
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2052
    (aCollection == self) ifTrue:[^ true].
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2053
    (aCollection size == self size) ifFalse:[^ false].
6130
645bc4c27f3d sameContentsAs:whenComparedUsing: -> sameContentsAs:whenComparedWith:
Claus Gittinger <cg@exept.de>
parents: 6129
diff changeset
  2054
    (aCollection isSequenceable) ifFalse:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2055
	^ aCollection sameContentsAs:self whenComparedWith:compareBlock
6130
645bc4c27f3d sameContentsAs:whenComparedUsing: -> sameContentsAs:whenComparedWith:
Claus Gittinger <cg@exept.de>
parents: 6129
diff changeset
  2056
    ].
6129
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2057
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2058
    stop := self size.
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2059
    stop == (aCollection size) ifFalse:[^ false].
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2060
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2061
    index := 1.
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2062
    [index <= stop] whileTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2063
	(compareBlock value:(self at:index) value:(aCollection at:index)) ifFalse:[^ false].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2064
	index := index + 1
6129
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2065
    ].
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2066
    ^ true
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2067
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2068
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2069
     #(1 2 3 4 5) sameContentsAs: #(1 2 3 4 5)     whenComparedWith:[:a :b | a = b]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2070
     #(1 2 3 4 5) sameContentsAs: #(1 2 3 4 5)     whenComparedWith:[:a :b | a == b]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2071
     #(1 2 3 4 5) sameContentsAs: #(1.0 2 3 4.0 5) whenComparedWith:[:a :b | a = b]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2072
     #(1 2 3 4 5) sameContentsAs: #(1.0 2 3 4.0 5) whenComparedWith:[:a :b | a == b]
6130
645bc4c27f3d sameContentsAs:whenComparedUsing: -> sameContentsAs:whenComparedWith:
Claus Gittinger <cg@exept.de>
parents: 6129
diff changeset
  2073
645bc4c27f3d sameContentsAs:whenComparedUsing: -> sameContentsAs:whenComparedWith:
Claus Gittinger <cg@exept.de>
parents: 6129
diff changeset
  2074
     #('Hello' 'ABC' 'worlD') sameContentsAs: #('Hello' 'ABC' 'worlD') whenComparedWith:[:a :b | a sameAs:b]
645bc4c27f3d sameContentsAs:whenComparedUsing: -> sameContentsAs:whenComparedWith:
Claus Gittinger <cg@exept.de>
parents: 6129
diff changeset
  2075
    "
645bc4c27f3d sameContentsAs:whenComparedUsing: -> sameContentsAs:whenComparedWith:
Claus Gittinger <cg@exept.de>
parents: 6129
diff changeset
  2076
645bc4c27f3d sameContentsAs:whenComparedUsing: -> sameContentsAs:whenComparedWith:
Claus Gittinger <cg@exept.de>
parents: 6129
diff changeset
  2077
    "Created: / 31.10.2001 / 11:29:38 / cg"
645bc4c27f3d sameContentsAs:whenComparedUsing: -> sameContentsAs:whenComparedWith:
Claus Gittinger <cg@exept.de>
parents: 6129
diff changeset
  2078
    "Modified: / 31.10.2001 / 11:30:32 / cg"
6129
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2079
!
339ac45a10de + sameContentsAs:whenComparedUsing:
Claus Gittinger <cg@exept.de>
parents: 6126
diff changeset
  2080
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2081
startsWith:aCollection
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  2082
    "return true, if the receiver's first elements match those
4389
3655a0fea430 definite (true) return for zero-length arg in #startsWith:
Claus Gittinger <cg@exept.de>
parents: 4382
diff changeset
  2083
     of aCollection
3655a0fea430 definite (true) return for zero-length arg in #startsWith:
Claus Gittinger <cg@exept.de>
parents: 4382
diff changeset
  2084
     If the argument is empty, true is returned."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2085
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2086
    |index "{ Class: SmallInteger }"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2087
     stop  "{ Class: SmallInteger }" |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2088
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2089
    (aCollection == self) ifTrue:[^true].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2090
    (aCollection isSequenceable) ifFalse:[^false].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2091
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2092
    stop := aCollection size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2093
    stop > self size ifTrue:[^false].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2094
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2095
    index := 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2096
    [index <= stop] whileTrue:[
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  2097
        (self at:index) = (aCollection at:index) ifFalse:[^false].
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  2098
        index := index + 1
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2099
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2100
    ^ true
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2101
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2102
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2103
     'abcde' startsWith:#($a $b $c)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2104
     #[1 2 3 4] startsWith:#(1 2 3)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2105
     #(1 2 3 4) asOrderedCollection startsWith:#(1 2 3)
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2106
     #(1 2 3 4) asOrderedCollection startsWith:#()
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2107
    "
7279
c71ed5a8ae86 +startsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7278
diff changeset
  2108
!
c71ed5a8ae86 +startsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7278
diff changeset
  2109
c71ed5a8ae86 +startsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7278
diff changeset
  2110
startsWithAnyOf:aCollectionOfCollections
c71ed5a8ae86 +startsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7278
diff changeset
  2111
    "return true, if the receiver starts with any in aCollection"
c71ed5a8ae86 +startsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7278
diff changeset
  2112
c71ed5a8ae86 +startsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7278
diff changeset
  2113
    ^ aCollectionOfCollections contains:[:eachTriedEnd | self startsWith:eachTriedEnd]
c71ed5a8ae86 +startsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7278
diff changeset
  2114
c71ed5a8ae86 +startsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7278
diff changeset
  2115
    "
c71ed5a8ae86 +startsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7278
diff changeset
  2116
     'abcde' startsWithAnyOf:#('AB' 'ab')
c71ed5a8ae86 +startsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7278
diff changeset
  2117
     'abcde' startsWithAnyOf:#('AC' 'ac')
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2118
     #[1 2 3 4] startsWithAnyOf:#( #(1 3) #(1 4))
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2119
     #[1 2 3 4] startsWithAnyOf:#( #(1 3) #(1 2))
7279
c71ed5a8ae86 +startsWithAnyOf:
Claus Gittinger <cg@exept.de>
parents: 7278
diff changeset
  2120
    "
13897
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2121
!
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2122
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2123
with:aCollection findFirst:aBlock 
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2124
    "return the index of the first element for which aTwoArgBlock returns true
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2125
     against corresponding elements of aCollection. 
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2126
     If any collection is smaller, the size of the smaller plus one is returned"
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2127
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2128
    |mySize otherSize minSize|
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2129
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2130
    mySize := self size.
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2131
    otherSize := aCollection size.
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2132
    minSize := mySize min:otherSize.
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2133
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2134
    self from:1 to:minSize with:aCollection doWithIndex:[:el1 :el2 :i |
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2135
        (aBlock value:el1 value:el2) ifTrue:[ ^ i].
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2136
    ].
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2137
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2138
    mySize ~= otherSize ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2139
        ^ minSize + 1
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2140
    ].
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2141
    ^ 0
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2142
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2143
    "
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2144
     'hello' with:'helLo' findFirst:[:a :b | a ~= b] 
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2145
     'hello' with:'hello' findFirst:[:a :b | a ~= b]   
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2146
     'hello' with:'hello1' findFirst:[:a :b | a ~= b]   
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2147
     'hello1' with:'hello' findFirst:[:a :b | a ~= b]   
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2148
    "
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2149
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  2150
    "Created: / 08-01-2012 / 17:12:00 / cg"
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
  2151
! !
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
  2152
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2153
!SequenceableCollection methodsFor:'converting'!
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2154
11879
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2155
asCollectionOfSubCollectionsOfSize:pieceSize
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2156
    "return a collection containing pieces of size pieceSite from the receiver.
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  2157
     The last piece may be smaller, if the receiver's size is not a multiple of pieceSize."
11879
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2158
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2159
    |pieces
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2160
     start  "{ Class:SmallInteger }"
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2161
     stop   "{ Class:SmallInteger }"
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2162
     mySize "{ Class:SmallInteger }"|
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2163
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2164
    pieces := OrderedCollection new.
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2165
    start := 1. stop := start + pieceSize - 1.
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2166
    mySize := self size.
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2167
    [stop <= mySize] whileTrue:[
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2168
        pieces add:(self copyFrom:start to:stop).
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2169
        start := start + pieceSize.
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2170
        stop := stop + pieceSize.
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2171
    ].
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2172
    (start <= mySize) ifTrue:[
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2173
        pieces add:(self copyFrom:start to:mySize).
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2174
    ].
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2175
    ^ pieces
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2176
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2177
    "
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2178
     '123123123123123123' asCollectionOfSubCollectionsOfSize:3
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2179
     '12312312312312312312' asCollectionOfSubCollectionsOfSize:3 
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2180
    "
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2181
!
e7d20a6e6719 +asCollectionOfSubCollectionsOfSize:
Claus Gittinger <cg@exept.de>
parents: 11878
diff changeset
  2182
8851
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2183
asCollectionOfSubCollectionsSeparatedBy:anElement
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2184
    "return a collection containing the subcollections (separated by anElement)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2185
     of the receiver. If anElement occurs multiple times in a row,
8851
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2186
     the result will contain empty collections.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2187
     This algorithm uses equality-compare to detect the element."
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2188
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2189
    |cols myClass
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2190
     numberOfCols  "{ Class:SmallInteger }"
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2191
     startIndex    "{ Class:SmallInteger }"
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2192
     stopIndex     "{ Class:SmallInteger }" |
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2193
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2194
    "
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2195
     count first, to avoid regrowing of the OC
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2196
    "
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2197
    numberOfCols := (self occurrencesOf:anElement) + 1.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2198
    cols := OrderedCollection new:numberOfCols.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2199
    myClass := self species.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2200
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2201
    startIndex := 1.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2202
    1 to:numberOfCols do:[:lineNr |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2203
	stopIndex := self indexOf:anElement startingAt:startIndex.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2204
	stopIndex == 0 ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2205
	    stopIndex := self size
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2206
	] ifFalse: [
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2207
	    stopIndex := stopIndex - 1.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2208
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2209
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2210
	(stopIndex < startIndex) ifTrue: [
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2211
	    cols add:(myClass new:0)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2212
	] ifFalse: [
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2213
	    cols add:(self copyFrom:startIndex to:stopIndex)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2214
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2215
	startIndex := stopIndex + 2
8851
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2216
    ].
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2217
    ^ cols
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2218
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2219
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2220
     '1 one:2 two:3 three:4 four:5 five' withCRs asCollectionOfSubCollectionsSeparatedBy:$:
8851
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2221
     '1 one 2 two 3 three 4 four 5 five' withCRs asCollectionOfSubCollectionsSeparatedBy:Character space
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2222
     #(a b c d e f g h) asCollectionOfSubCollectionsSeparatedBy: #d.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2223
     #(a b c d e f d d g h) asCollectionOfSubCollectionsSeparatedBy: #d.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2224
    "
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2225
!
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2226
9234
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2227
asCollectionOfSubCollectionsSeparatedBy:anElement do:aBlock
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2228
    "evaluate aBlock for each subcollection generated by separating elements
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2229
     of the receiver by anElement.
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2230
     If anElement occurs multiple times in a row,
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2231
     the block will be invoked with empty collections as argument.
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2232
     This algorithm uses equality-compare to detect the element."
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2233
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2234
    |subCollection
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2235
     endIndex      "{ Class:SmallInteger }"
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2236
     startIndex    "{ Class:SmallInteger }"
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2237
     stopIndex     "{ Class:SmallInteger }" |
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2238
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2239
    startIndex := 0.
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2240
    endIndex := self size.
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2241
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2242
    [startIndex <= endIndex] whileTrue:[
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2243
        stopIndex := self indexOf:anElement startingAt:startIndex+1.
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2244
        stopIndex == 0 ifTrue:[
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2245
            stopIndex := self size
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2246
        ] ifFalse: [
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2247
            stopIndex := stopIndex - 1.
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2248
        ].
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2249
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2250
        (stopIndex < startIndex) ifTrue: [
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2251
            subCollection := self species new:0
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2252
        ] ifFalse: [
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2253
            subCollection := self copyFrom:startIndex+1 to:stopIndex
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2254
        ].
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2255
        aBlock value:subCollection.
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2256
        startIndex := stopIndex + 1
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2257
    ].
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2258
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2259
    "
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2260
     '' 
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2261
        asCollectionOfSubCollectionsSeparatedBy:$: do:[:each | Transcript showCR:each storeString]
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2262
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2263
     '1 one' 
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2264
        asCollectionOfSubCollectionsSeparatedBy:$: do:[:each | Transcript showCR:each storeString]
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2265
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2266
     '1 one:2 two:3 three:4 four:5 five' 
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2267
        asCollectionOfSubCollectionsSeparatedBy:$: do:[:each | Transcript showCR:each storeString]
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2268
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2269
     'a::b' 
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2270
        asCollectionOfSubCollectionsSeparatedBy:$: do:[:each | Transcript showCR:each storeString]
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2271
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2272
     ':' 
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2273
        asCollectionOfSubCollectionsSeparatedBy:$: do:[:each | Transcript showCR:each storeString]
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2274
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2275
     ':a' 
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2276
        asCollectionOfSubCollectionsSeparatedBy:$: do:[:each | Transcript showCR:each storeString]
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2277
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2278
     'a:' 
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2279
        asCollectionOfSubCollectionsSeparatedBy:$: do:[:each | Transcript showCR:each storeString]
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2280
    "
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2281
!
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  2282
8851
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2283
asCollectionOfSubCollectionsSeparatedByAll:aSeparatorCollection
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2284
    "return a collection containing the subcollections (separated by aSeparatorCollection)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2285
     of the receiver. If aSeparatorCollection occurs multiple times in a row,
8851
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2286
     the result will contain empty strings.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2287
     Uses equality-compare when searching for aSeparatorCollection."
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2288
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2289
    |items done myClass
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2290
     startIndex    "{ Class:SmallInteger }"
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2291
     stopIndex     "{ Class:SmallInteger }" |
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2292
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2293
    items := OrderedCollection new.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2294
    myClass := self species.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2295
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2296
    startIndex := 1.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2297
    done := false.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2298
    [done] whileFalse:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2299
	stopIndex := self indexOfSubCollection:aSeparatorCollection startingAt:startIndex.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2300
	stopIndex == 0 ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2301
	    stopIndex := self size.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2302
	    done := true.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2303
	] ifFalse: [
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2304
	    stopIndex := stopIndex - 1.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2305
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2306
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2307
	(stopIndex < startIndex) ifTrue: [
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2308
	    items add:(myClass new:0)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2309
	] ifFalse: [
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2310
	    items add:(self copyFrom:startIndex to:stopIndex)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2311
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2312
	startIndex := stopIndex + (aSeparatorCollection size) + 1.
8851
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2313
    ].
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2314
    ^ items
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2315
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2316
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2317
     '1::2::3::4::5::' asCollectionOfSubCollectionsSeparatedByAll:'::'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2318
     #(1 2 3 1 2 3 4 3 1 1 2 3 1 4 5) asCollectionOfSubCollectionsSeparatedByAll:#(3 1)
8851
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2319
    "
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2320
!
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2321
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2322
asCollectionOfSubCollectionsSeparatedByAny:aCollectionOfSeparators
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2323
    "return a collection containing the subCollection
8851
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2324
     (separated by any from aCollectionOfSeparators) of the receiver.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2325
     This allows breaking up strings using a number of elements as separator.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2326
     Uses equality-compare when searching for separators."
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2327
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2328
    ^ self asCollectionOfSubCollectionsSeparatedByAnyForWhich:[:el | aCollectionOfSeparators includes:el]
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2329
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2330
    "
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2331
     'hello:world:isnt:this nice' asCollectionOfSubCollectionsSeparatedByAny:#($:)
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2332
     'hello:world:isnt:this nice' asCollectionOfSubCollectionsSeparatedByAny:':'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2333
     'hello:world:isnt:this nice' asCollectionOfSubCollectionsSeparatedByAny:(Array with:$: with:Character space)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2334
     'hello:world:isnt:this nice' asCollectionOfSubCollectionsSeparatedByAny:': '
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2335
     'h1e2l3l4o' asCollectionOfSubCollectionsSeparatedByAny:($1 to: $9)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2336
     #(1 9 2 8 3 7 4 6 5 5) asCollectionOfSubCollectionsSeparatedByAny:#(1 2 3)
8851
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2337
    "
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2338
!
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2339
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2340
asCollectionOfSubCollectionsSeparatedByAnyForWhich:aBlock
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2341
    "return a collection containing the subCollection
8851
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2342
     (separated by elements for which aBlock evaluates to true) of the receiver.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2343
     This allows breaking up strings using an arbitrary condition."
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2344
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2345
    |words
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2346
     start  "{ Class:SmallInteger }"
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2347
     stop   "{ Class:SmallInteger }"
8851
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2348
     mySize "{ Class:SmallInteger }"|
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2349
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2350
    words := OrderedCollection new.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2351
    start := 1.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2352
    mySize := self size.
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2353
    [start <= mySize] whileTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2354
	"skip multiple separators"
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2355
	[ aBlock value:(self at:start)] whileTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2356
	    start := start + 1 .
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2357
	    start > mySize ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2358
		^ words
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2359
	    ].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2360
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2361
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2362
	stop := self findFirst:aBlock startingAt:start.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2363
	stop == 0 ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2364
	    words add:(self copyFrom:start to:mySize).
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2365
	    ^ words
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2366
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2367
	words add:(self copyFrom:start to:(stop - 1)).
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2368
	start := stop
8851
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2369
    ].
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2370
    ^ words
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2371
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2372
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2373
     'hello:world:isnt:this nice' asCollectionOfSubCollectionsSeparatedByAnyForWhich:[:ch | ch = $:]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2374
     'h1e2l3l4o' asCollectionOfSubCollectionsSeparatedByAnyForWhich:[:ch | ch isDigit]
8851
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2375
     #(1 9 2 8 3 7 4 6 5 5) asCollectionOfSubCollectionsSeparatedByAnyForWhich:[:n | n odd]
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2376
    "
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2377
!
3910c013402b +asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  2378
5607
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5605
diff changeset
  2379
asSequenceableCollection
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5605
diff changeset
  2380
    "return myself as a SequenceableCollection.
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5605
diff changeset
  2381
     I am already a SequenceableCollection."
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5605
diff changeset
  2382
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5605
diff changeset
  2383
    ^ self
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5605
diff changeset
  2384
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5605
diff changeset
  2385
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5605
diff changeset
  2386
!
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5605
diff changeset
  2387
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2388
asStringCollection
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2389
    "return a new string collection containing the elements;
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2390
     these ought to be strings. (i.e. String or Text instances)"
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2391
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2392
    |newColl sz|
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2393
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2394
    sz := self size.
9162
2052a4f34093 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9106
diff changeset
  2395
    newColl := StringCollection withSize:sz.
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2396
    newColl replaceFrom:1 to:sz with:self startingAt:1.
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2397
    ^ newColl
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2398
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2399
    "Created: 18.5.1996 / 13:53:55 / cg"
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2400
    "Modified: 18.5.1996 / 14:00:16 / cg"
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2401
!
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2402
1188
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
  2403
asStringWith:sepChar
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2404
    "return a string generated by concatenating my elements
1188
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
  2405
     (which must be strings or nil) and embedding sepChar characters in between.
14674
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2406
     Nil entries and empty strings are counted as empty lines.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2407
     Similar to joinWith:, but specifically targeted towards collections of strings."
1188
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
  2408
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2409
    ^ self
12941
967f28e7c0b1 comment/format in: #asStringWith:
Claus Gittinger <cg@exept.de>
parents: 12938
diff changeset
  2410
        from:1 to:(self size)
967f28e7c0b1 comment/format in: #asStringWith:
Claus Gittinger <cg@exept.de>
parents: 12938
diff changeset
  2411
        asStringWith:sepChar
967f28e7c0b1 comment/format in: #asStringWith:
Claus Gittinger <cg@exept.de>
parents: 12938
diff changeset
  2412
        compressTabs:false
967f28e7c0b1 comment/format in: #asStringWith:
Claus Gittinger <cg@exept.de>
parents: 12938
diff changeset
  2413
        final:nil
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2414
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2415
    "
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2416
     #('hello' 'world' 'foo' 'bar' 'baz') asStringWith:$;
12941
967f28e7c0b1 comment/format in: #asStringWith:
Claus Gittinger <cg@exept.de>
parents: 12938
diff changeset
  2417
     #('hello' 'world' 'foo' 'bar' 'baz') asStringWith:'|'
967f28e7c0b1 comment/format in: #asStringWith:
Claus Gittinger <cg@exept.de>
parents: 12938
diff changeset
  2418
     'hello|world|foo|bar|baz' asCollectionOfSubstringsSeparatedBy:$|
967f28e7c0b1 comment/format in: #asStringWith:
Claus Gittinger <cg@exept.de>
parents: 12938
diff changeset
  2419
    "
967f28e7c0b1 comment/format in: #asStringWith:
Claus Gittinger <cg@exept.de>
parents: 12938
diff changeset
  2420
967f28e7c0b1 comment/format in: #asStringWith:
Claus Gittinger <cg@exept.de>
parents: 12938
diff changeset
  2421
    "Modified: / 10-07-2010 / 22:59:29 / cg"
1188
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
  2422
!
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
  2423
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
  2424
asStringWith:sepCharacter from:firstLine to:lastLine
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
  2425
    "return part of myself as a string with embedded sepCharacters.
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
  2426
     My elements must be strings or nil; nil entries and empty strings are
14674
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2427
     taken as empty lines.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2428
     Similar to joinWith:, but specifically targeted towards collections of strings."
1188
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
  2429
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2430
    ^ self
14674
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2431
        from:firstLine to:lastLine
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2432
        asStringWith:sepCharacter
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2433
        compressTabs:false
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2434
        final:nil
1188
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
  2435
    "
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
  2436
     creating entries for searchpath:
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
  2437
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2438
     #('foo' 'bar' 'baz' '/foo/bar') asStringWith:$;
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2439
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2440
     #('foo' 'bar' 'baz' '/foo/bar') asStringWith:$: from:1 to:3
1188
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
  2441
    "
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
  2442
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
  2443
    "Modified: 23.2.1996 / 15:28:55 / cg"
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
  2444
!
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
  2445
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2446
asStringWith:sepCharacter from:firstLine to:lastLine compressTabs:compressTabs final:endCharacter
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
  2447
    "return part of myself as a string or text with embedded sepCharacters.
263
e0195b4ad1ac *** empty log message ***
claus
parents: 260
diff changeset
  2448
     My elements must be strings or nil; nil entries and empty strings are
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2449
     taken as empty lines.
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2450
     If the argument compressTabs is true, leading spaces are converted
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2451
     to tab-characters (8col tabs). The last line is followed by a final
14674
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2452
     character (if non-nil).
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2453
     Similar to joinWith:, but specifically targeted towards collections of strings."
3602
dd53d372c250 added #asStringWithoutEmphasis...
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  2454
dd53d372c250 added #asStringWithoutEmphasis...
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  2455
    ^ self
14674
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2456
        from:firstLine to:lastLine
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2457
        asStringWith:sepCharacter
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2458
        compressTabs:compressTabs
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2459
        final:endCharacter
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2460
        withEmphasis:true
3602
dd53d372c250 added #asStringWithoutEmphasis...
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  2461
dd53d372c250 added #asStringWithoutEmphasis...
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  2462
    "Modified: / 17.6.1998 / 12:31:19 / cg"
dd53d372c250 added #asStringWithoutEmphasis...
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  2463
!
dd53d372c250 added #asStringWithoutEmphasis...
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  2464
dd53d372c250 added #asStringWithoutEmphasis...
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  2465
asStringWith:sepCharacter from:firstLine to:lastLine compressTabs:compressTabs final:endCharacter withEmphasis:withEmphasis
4677
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2466
    "return part of myself as a string or text with embedded sepCharacters
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2467
     and followup endCharacter.
3602
dd53d372c250 added #asStringWithoutEmphasis...
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  2468
     My elements must be strings or nil; nil entries and empty strings are
dd53d372c250 added #asStringWithoutEmphasis...
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  2469
     taken as empty lines.
4677
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2470
     sepCharacter and endCharacter may be nil, a character or a string.
3602
dd53d372c250 added #asStringWithoutEmphasis...
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  2471
     If the argument compressTabs is true, leading spaces are converted
dd53d372c250 added #asStringWithoutEmphasis...
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  2472
     to tab-characters (8col tabs). The last line is followed by a final
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2473
     character (if non-nil).
3602
dd53d372c250 added #asStringWithoutEmphasis...
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  2474
     The withEmphais argument controls if the returned string should preserve
dd53d372c250 added #asStringWithoutEmphasis...
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  2475
     any emphasis. If false, a plain string is returned.
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2476
     This method is tuned for big collections, in not creating many
263
e0195b4ad1ac *** empty log message ***
claus
parents: 260
diff changeset
  2477
     intermediate strings (has linear runtime). For very small collections
14674
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2478
     and small strings, it may be faster to use the comma , operation.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2479
     Similar to joinWith:, but specifically targeted towards collections of strings."
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2480
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2481
    ^ self
14674
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2482
        from:firstLine to:lastLine
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2483
        asStringWith:sepCharacter
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2484
        compressTabs:compressTabs
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2485
        final:endCharacter
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2486
        withEmphasis:withEmphasis
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2487
!
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2488
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2489
asStringWithCRs
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2490
    "return a string generated by concatenating my elements
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2491
     (which must be strings or nil) and embedding cr characters in between.
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2492
     Nil entries and empty strings are counted as empty lines."
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2493
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2494
    ^ self asStringWithCRsFrom:1 to:(self size)
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2495
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2496
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2497
     #('hello' 'world' 'foo' 'bar' 'baz') asStringWithCRs
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2498
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2499
     (OrderedCollection new
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2500
	add:'hello';
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2501
	add:'world';
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2502
	add:'foo';
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2503
	add:('bar' asText allBold);
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2504
	yourself) asStringWithCRs
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2505
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2506
     Transcript showCR:
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2507
	 (OrderedCollection new
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2508
	    add:'hello';
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2509
	    add:'world';
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2510
	    add:'foo';
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2511
	    add:('bar' asText allBold);
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2512
	    yourself) asStringWithCRs
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2513
    "
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2514
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2515
    "Modified: 18.5.1996 / 16:43:47 / cg"
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2516
!
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2517
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2518
asStringWithCRsFrom:firstLine to:lastLine
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2519
    "return a string generated by concatenating some of my elements
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2520
     (which must be strings or nil) and embedding cr characters in between.
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2521
     Nil entries and empty strings are counted as empty lines."
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2522
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2523
    ^ self asStringWithCRsFrom:firstLine to:lastLine compressTabs:false withCR:true
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2524
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2525
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2526
     #('hello' 'world' 'foo' 'bar' 'baz') asStringWithCRsFrom:2 to:4
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2527
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2528
    "
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2529
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2530
    "Modified: 18.5.1996 / 16:50:55 / cg"
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2531
!
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2532
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2533
asStringWithCRsFrom:firstLine to:lastLine compressTabs:compressTabs
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2534
    "return part of myself as a string with embedded cr's.
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2535
     My elements must be strings or nil.
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2536
     If the argument compressTabs is true, leading spaces are converted
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2537
     to tab-characters (8col tabs).
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2538
     Nil entries and empty strings are taken as empty lines."
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2539
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2540
    ^ self asStringWithCRsFrom:firstLine to:lastLine compressTabs:compressTabs withCR:true
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2541
!
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2542
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2543
asStringWithCRsFrom:firstLine to:lastLine compressTabs:compressTabs withCR:withCR
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2544
    "return part of myself as a string with embedded cr's.
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2545
     My elements must be strings or nil; nil entries and empty strings are
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2546
     taken as empty lines.
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2547
     If the argument compressTabs is true, leading spaces are converted
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2548
     to tab-characters (8col tabs). WithCR controls whether the last line
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2549
     should be followed by a cr or not."
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2550
14674
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2551
    ^ self 
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2552
        asStringWith:(Character cr)
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2553
        from:firstLine to:lastLine
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2554
        compressTabs:compressTabs
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2555
        final:(withCR ifTrue:[Character cr] ifFalse:[nil])
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2556
!
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2557
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2558
decodeAsLiteralArray
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2559
    "given a literalEncoding in the receiver,
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2560
     create & return the corresponding object.
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2561
     The inverse operation to #literalArrayEncoding."
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2562
9414
33636257cb26 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9366
diff changeset
  2563
    |clsName cls|
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2564
8799
4f8e9a7cb68b decodeAsLiteralArray: allow empty array
Claus Gittinger <cg@exept.de>
parents: 8797
diff changeset
  2565
    self size == 0 ifTrue:[
9358
db86dc43a474 error message
Claus Gittinger <cg@exept.de>
parents: 9307
diff changeset
  2566
        ^ self.
8799
4f8e9a7cb68b decodeAsLiteralArray: allow empty array
Claus Gittinger <cg@exept.de>
parents: 8797
diff changeset
  2567
    ].
4f8e9a7cb68b decodeAsLiteralArray: allow empty array
Claus Gittinger <cg@exept.de>
parents: 8797
diff changeset
  2568
9414
33636257cb26 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9366
diff changeset
  2569
    clsName := self at:1.
5850
6eac4271bf65 error handling when literalArraySpec is bad.
Claus Gittinger <cg@exept.de>
parents: 5817
diff changeset
  2570
    clsName isSymbol ifFalse:[
9358
db86dc43a474 error message
Claus Gittinger <cg@exept.de>
parents: 9307
diff changeset
  2571
        ^ MissingClassInLiteralArrayErrorSignal
db86dc43a474 error message
Claus Gittinger <cg@exept.de>
parents: 9307
diff changeset
  2572
                raiseRequestWith:clsName
9414
33636257cb26 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9366
diff changeset
  2573
                errorString:('non-symbol className in literalArray-spec: ', clsName printString)
5850
6eac4271bf65 error handling when literalArraySpec is bad.
Claus Gittinger <cg@exept.de>
parents: 5817
diff changeset
  2574
    ].
9414
33636257cb26 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9366
diff changeset
  2575
    cls := Smalltalk classNamed:clsName.
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2576
    cls isNil ifTrue:[
9414
33636257cb26 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9366
diff changeset
  2577
        ^ MissingClassInLiteralArrayErrorSignal
33636257cb26 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9366
diff changeset
  2578
                raiseRequestWith:clsName
33636257cb26 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9366
diff changeset
  2579
                errorString:('unknown class in literalArray-spec: ' , clsName)
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2580
    ].
9414
33636257cb26 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9366
diff changeset
  2581
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2582
    ^ cls decodeFromLiteralArray:self.
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2583
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2584
    "
14329
7bafeeed19bc comment/format in: #decodeAsLiteralArray
Claus Gittinger <cg@exept.de>
parents: 14265
diff changeset
  2585
     #(10 20) literalArrayEncoding 
10476
65a5532b14b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10453
diff changeset
  2586
     #(Array 10 20) decodeAsLiteralArray 
14329
7bafeeed19bc comment/format in: #decodeAsLiteralArray
Claus Gittinger <cg@exept.de>
parents: 14265
diff changeset
  2587
     #() literalArrayEncoding   
7bafeeed19bc comment/format in: #decodeAsLiteralArray
Claus Gittinger <cg@exept.de>
parents: 14265
diff changeset
  2588
     #(Array) decodeAsLiteralArray 
10476
65a5532b14b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10453
diff changeset
  2589
    "
65a5532b14b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10453
diff changeset
  2590
65a5532b14b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10453
diff changeset
  2591
    "Modified: / 26-03-2007 / 13:57:10 / cg"
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2592
!
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2593
10818
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2594
decodeAsLiteralArrayCollection
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2595
    "given an array of literalEncodings in the receiver,
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2596
     create & return the corresponding collection object."
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2597
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2598
    ^ self collect:[:each | each decodeAsLiteralArray]
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2599
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2600
    "
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2601
     #(
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2602
        #(Point 10 20) 
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2603
        #(Point 20 30) 
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2604
        #(Point 30 40) 
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2605
        #(Point 40 50) 
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2606
     ) decodeAsLiteralArrayCollection 
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2607
    "
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2608
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2609
    "Modified: / 26-03-2007 / 13:57:10 / cg"
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2610
!
cbbb7124b553 +decodeAsLiteralArrayCollection
Claus Gittinger <cg@exept.de>
parents: 10812
diff changeset
  2611
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2612
from:firstLine to:lastLine asStringWith:sepCharacter
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2613
    "return part of myself as a string with embedded sepCharacters.
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2614
     My elements must be strings or nil; nil entries and empty strings are
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2615
     taken as empty lines."
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2616
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2617
    ^ self
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2618
	from:firstLine
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2619
	to:lastLine
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2620
	asStringWith:sepCharacter
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2621
	compressTabs:false
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2622
	final:nil
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2623
    "
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2624
     creating entries for searchpath:
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2625
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2626
     #('foo' 'bar' 'baz' '/foo/bar') asStringWith:$;
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2627
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2628
     #('foo' 'bar' 'baz' '/foo/bar') from:1 to:3 asStringWith:$:
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2629
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2630
     (#('foo' 'bar' 'baz' '/foo/bar') copyFrom:1 to:3) asStringWith:$:
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2631
    "
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2632
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2633
    "Modified: 23.2.1996 / 15:28:55 / cg"
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2634
!
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2635
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2636
from:firstLine to:lastLine asStringWith:sepCharacter compressTabs:compressTabs final:endCharacter
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2637
    "return part of myself as a string or text with embedded sepCharacters.
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2638
     My elements must be strings or nil; nil entries and empty strings are
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2639
     taken as empty lines.
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2640
     If the argument compressTabs is true, leading spaces are converted
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2641
     to tab-characters (8col tabs). The last line is followed by a final
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2642
     character (if non-nil)."
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2643
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2644
    ^ self
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2645
	from:firstLine
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2646
	to:lastLine
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2647
	asStringWith:sepCharacter
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2648
	compressTabs:compressTabs
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2649
	final:endCharacter
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2650
	withEmphasis:true
5575
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2651
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2652
    "Modified: / 17.6.1998 / 12:31:19 / cg"
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2653
!
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2654
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2655
from:firstLine to:lastLine asStringWith:sepCharacter compressTabs:compressTabs final:endCharacter withEmphasis:withEmphasis
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2656
    "return part of myself as a string or text with embedded sepCharacters
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2657
     and followup endCharacter.
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2658
     My elements must be strings or nil; nil entries and empty strings are
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2659
     taken as empty lines.
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2660
     sepCharacter and endCharacter may be nil, a character or a string.
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2661
     If the argument compressTabs is true, leading spaces are converted
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2662
     to tab-characters (8col tabs). The last line is followed by a final
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2663
     character (if non-nil).
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2664
     The withEmphais argument controls if the returned string should preserve
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2665
     any emphasis. If false, a plain string is returned.
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2666
     This method is tuned for big collections, in not creating many
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2667
     intermediate strings (has linear runtime). For very small collections
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2668
     and small strings, it may be faster to use the comma , operation."
2b7168255bff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5563
diff changeset
  2669
293
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  2670
    |idx1        "{ Class:SmallInteger }"
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  2671
     idx2        "{ Class:SmallInteger }"
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  2672
     totalLength "{ Class:SmallInteger }"
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2673
     pos         "{ Class:SmallInteger }"
4677
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2674
     sepCnt      "{ Class:SmallInteger }"
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2675
     newString lineString spaces idx nTabs
8099
bc11cc417dad care for non-8bit strings
Claus Gittinger <cg@exept.de>
parents: 7943
diff changeset
  2676
     maxBitsPerCharacter stringClass needEmphasis newRuns c
1536
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
  2677
     thisLen anyTab|
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2678
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2679
    "
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2680
     first accumulate the size of the string, to avoid
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2681
     countless reallocations. If tabs are compressed,
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2682
     the size computed is not exact, but gives an upper bound ...
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  2683
     On the fly, look if a 16bit string or emphasized text is needed.
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2684
    "
8099
bc11cc417dad care for non-8bit strings
Claus Gittinger <cg@exept.de>
parents: 7943
diff changeset
  2685
    needEmphasis := false.
bc11cc417dad care for non-8bit strings
Claus Gittinger <cg@exept.de>
parents: 7943
diff changeset
  2686
    maxBitsPerCharacter := 8.
1015
a564efc63383 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  2687
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2688
    totalLength := 0.
4677
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2689
    sepCharacter isNil ifTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2690
	sepCnt := 0
4677
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2691
    ] ifFalse:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2692
	sepCharacter isCharacter ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2693
	    sepCnt := 1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2694
	] ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2695
	    sepCnt := sepCharacter size
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2696
	]
4677
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2697
    ].
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2698
293
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  2699
    idx1 := firstLine.
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  2700
    idx2 := lastLine.
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  2701
    idx1 to:idx2 do:[:lineIndex |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2702
	lineString := self at:lineIndex.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2703
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2704
	lineString notNil ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2705
	    withEmphasis ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2706
		lineString hasChangeOfEmphasis ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2707
		    needEmphasis := true
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2708
		].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2709
	    ].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2710
	    maxBitsPerCharacter := maxBitsPerCharacter max:(lineString bitsPerCharacter).
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2711
	    totalLength := totalLength + lineString size
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2712
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2713
	totalLength := totalLength + sepCnt
4677
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2714
    ].
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2715
    totalLength := totalLength - sepCnt.
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2716
8099
bc11cc417dad care for non-8bit strings
Claus Gittinger <cg@exept.de>
parents: 7943
diff changeset
  2717
    maxBitsPerCharacter > 8 ifTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2718
	maxBitsPerCharacter > 16 ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2719
	    stringClass := Unicode32String.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2720
	] ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2721
	    stringClass := Unicode16String.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2722
	]
8099
bc11cc417dad care for non-8bit strings
Claus Gittinger <cg@exept.de>
parents: 7943
diff changeset
  2723
    ] ifFalse:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2724
	stringClass := String.
8099
bc11cc417dad care for non-8bit strings
Claus Gittinger <cg@exept.de>
parents: 7943
diff changeset
  2725
    ].
bc11cc417dad care for non-8bit strings
Claus Gittinger <cg@exept.de>
parents: 7943
diff changeset
  2726
4677
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2727
    endCharacter notNil ifTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2728
	endCharacter isCharacter ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2729
	    totalLength := totalLength + 1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2730
	] ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2731
	    totalLength := totalLength + endCharacter size
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2732
	].
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2733
    ].
4677
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2734
    totalLength <= 0 ifTrue:[^ ''].
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2735
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2736
    spaces := '        '.
1016
9588a8d5a64e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1015
diff changeset
  2737
    newString := stringClass new:totalLength.
1536
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
  2738
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
  2739
    needEmphasis ifTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2740
	newRuns := RunArray new.
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
  2741
    ].
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2742
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2743
    "
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2744
     now, replace ...
1536
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
  2745
     Be careful with runArrays:
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2746
	replacing individual elements is VERY expensive.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2747
	Therefore, create a new runArray from scratch.
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2748
    "
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2749
    pos := 1.
293
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  2750
    idx1 to:idx2 do:[:lineIndex |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2751
	lineString := self at:lineIndex.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2752
	thisLen := lineString size.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2753
	thisLen ~~ 0 ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2754
	    withEmphasis ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2755
		lineString := lineString string.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2756
	    ].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2757
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2758
	    (anyTab := compressTabs) ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2759
		"
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2760
		 mhmh: could use withTabs from String-class here,
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2761
		 but we should avoid creating too many temporary strings
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2762
		 (especially, since this method is typically used when converting
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2763
		 big texts such as when saving in the filebrowser ...).
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2764
		 Therefore, we convert tabs inline here doing a direct replace
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2765
		 in newString."
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2766
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2767
		idx := lineString findFirst:[:c | (c ~~ Character space)].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2768
		nTabs := (idx-1) // 8.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2769
		anyTab := (nTabs > 0)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2770
	    ].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2771
	    anyTab ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2772
		"any tabs"
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2773
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2774
		idx := nTabs * 8 + 1.   "/ index of first copied character in string
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2775
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2776
		newString atAll:(pos to:pos+nTabs-1) put:(Character tab).
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2777
		newRuns notNil ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2778
		    newRuns add:nil withOccurrences:nTabs
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2779
		].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2780
		pos := pos + nTabs.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2781
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2782
		newString replaceFrom:pos with:lineString startingAt:idx.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2783
		newRuns notNil ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2784
		    lineString hasChangeOfEmphasis ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2785
			idx to:lineString size do:[:pos |
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2786
			    newRuns add:(lineString emphasisAt:pos)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2787
			]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2788
		    ] ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2789
			newRuns add:nil withOccurrences:(lineString size - idx + 1)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2790
		    ]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2791
		].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2792
		pos := pos + thisLen - (nTabs * 8).
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2793
	    ] ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2794
		newString replaceFrom:pos with:lineString.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2795
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2796
		newRuns notNil ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2797
		    lineString hasChangeOfEmphasis ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2798
			newRuns addAll:(lineString emphasis)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2799
		    ] ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2800
			newRuns add:nil withOccurrences:lineString size
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2801
		    ]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2802
		].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2803
		pos := pos + thisLen.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2804
	    ].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2805
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2806
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2807
	lineIndex ~~ lastLine ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2808
	    c := sepCharacter
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2809
	] ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2810
	    c := endCharacter
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2811
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2812
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2813
	c notNil ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2814
	    c isCharacter ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2815
		newString at:pos put:c.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2816
		newRuns notNil ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2817
		    newRuns add:nil.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2818
		].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2819
		pos := pos + 1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2820
	    ] ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2821
		newString replaceFrom:pos with:c.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2822
		newRuns notNil ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2823
		    newRuns add:nil withOccurrences:c size
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2824
		].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2825
		pos := pos + c size
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2826
	    ]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2827
	].
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2828
    ].
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2829
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2830
    "
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2831
     in case of tab compression, the result has to be
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2832
     cut to size ... sorry
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2833
    "
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2834
    pos ~~ totalLength ifTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2835
	newString := newString copyTo:(pos - 1)
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2836
    ].
1536
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
  2837
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
  2838
    newRuns notNil ifTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2839
	newString := Text string:newString runs:newRuns.
1536
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
  2840
    ].
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
  2841
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2842
    ^ newString
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2843
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2844
    "
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2845
     creating entries for searchpath:
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2846
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2847
       #('foo' 'bar' 'baz' '/foo/bar')
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2848
	  asStringWith:$:
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2849
	  from:1 to:4
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2850
	  compressTabs:false
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2851
	  final:nil
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2852
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2853
     with trailing colon:
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2854
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2855
       #('foo' 'bar' 'baz' '/foo/bar')
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2856
	  asStringWith:$:
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2857
	  from:1 to:4
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2858
	  compressTabs:false
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2859
	  final:$:
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2860
4677
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2861
     concatenating elements (nil sepChars and nil endChars):
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2862
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2863
       #('foo' 'bar' 'baz')
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2864
	  asStringWith:nil
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2865
	  from:1 to:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2866
	  compressTabs:false
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2867
	  final:nil
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2868
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2869
     creating a string from a collection of lines:
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2870
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2871
       #('foo' 'bar' 'baz')
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2872
	  asStringWith:(Character cr)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2873
	  from:1 to:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2874
	  compressTabs:false
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2875
	  final:(Character cr)
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
  2876
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
  2877
     creating a text from a collection of mixed texts and strings:
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
  2878
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
  2879
       (Array
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2880
	    with:'foo'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2881
	    with:('bar' asText allBold)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2882
	    with:'baz'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2883
	    with:('baz2' asText emphasizeAllWith:#italic)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2884
       )
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2885
	  asStringWith:(Character cr)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2886
	  from:1 to:4
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2887
	  compressTabs:false
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2888
	  final:(Character cr)
4677
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2889
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2890
     can also use strings as separating characters:
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2891
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2892
       #('foo' 'bar' 'baz')
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2893
	  asStringWith:'__'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2894
	  from:1 to:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2895
	  compressTabs:false
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2896
	  final:nil
4677
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2897
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2898
     and as final characters:
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2899
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2900
       #('foo' 'bar' 'baz')
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2901
	  asStringWith:'__'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2902
	  from:1 to:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2903
	  compressTabs:false
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  2904
	  final:'***'
4677
90a037f88b0e allow strings as sepCharacter and endCharacter in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 4459
diff changeset
  2905
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  2906
    "
1003
c82f2dcf5611 care for embedded 16bit strings when concatenating a stringCollection
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2907
3602
dd53d372c250 added #asStringWithoutEmphasis...
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  2908
    "Created: / 17.6.1998 / 12:30:32 / cg"
dd53d372c250 added #asStringWithoutEmphasis...
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  2909
    "Modified: / 17.6.1998 / 12:31:59 / cg"
11827
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  2910
!
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  2911
14674
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2912
joinWithAll:separatingCollection
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2913
    "return a collection generated by concatenating my elements
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2914
     and slicing separatingCollection in between.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2915
     Similar to asStringWith:, but not specifically targeted towards collections of strings."
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2916
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2917
    ^ self
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2918
        joinWithAll:separatingCollection
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2919
        from:1 to:(self size) as:nil
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2920
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2921
    "
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2922
     #('hello' 'world' 'foo' 'bar' 'baz') joinWithAll:' ; '   
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2923
     #('hello' 'world' 'foo' 'bar' 'baz') joinWithAll:' | '
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2924
    "
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2925
!
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2926
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2927
joinWithAll:separatingCollection from:startIndex to:endIndex as:speciesOrNil 
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2928
    "extract parts of myself as a new collection with optional embedded separator.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2929
     Separator may be nil, or a collection of elements to be sliced in between.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2930
     SpeciesOrNil specifies the species of the resultig object, allowing for Arrays to be converted
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2931
     as OrderedCollection or vice versa on the fly. If nil is passed in, the species of the first non-nil
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2932
     element is used.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2933
     This counts the overall size first, then allocates the new collecton once and replaces elements
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2934
     via bulk copies. For very small collections, it may be faster to use the comma , operation.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2935
     Similar to asStringWith:, but not specifically targeted towards string handling."
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2936
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2937
    |totalLength "{ Class:SmallInteger }"
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2938
     pos         "{ Class:SmallInteger }"
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2939
     sepCnt      "{ Class:SmallInteger }"
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2940
     subColl newColl 
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2941
     species|
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2942
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2943
    startIndex = endIndex ifTrue:[ ^ self at:startIndex ].
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2944
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2945
    species := speciesOrNil.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2946
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2947
    "
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2948
     first accumulate the size of the result, 
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2949
     to avoid countless reallocations.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2950
    "
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2951
    totalLength := 0.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2952
    sepCnt := separatingCollection size.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2953
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2954
    startIndex to:endIndex do:[:index |
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2955
        subColl := self at:index.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2956
        totalLength := totalLength + subColl size.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2957
        species isNil ifTrue:[
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2958
            subColl notNil ifTrue:[
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2959
                species := subColl species
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2960
            ]
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2961
        ]
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2962
    ].
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2963
    totalLength := totalLength + ((endIndex - startIndex) * sepCnt).
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2964
    newColl := species withSize:totalLength.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2965
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2966
    pos := 1.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2967
    startIndex to:endIndex do:[:index |
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2968
        subColl := self at:index.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2969
        subColl size ~~ 0 ifTrue:[
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2970
            newColl replaceFrom:pos with:subColl startingAt:1.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2971
            pos := pos + subColl size.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2972
        ].
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2973
        ((sepCnt ~~ 0) and:[index ~~ endIndex]) ifTrue:[
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2974
            newColl replaceFrom:pos to:(pos+sepCnt-1) with:separatingCollection startingAt:1.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2975
            pos := pos + sepCnt.
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2976
        ].
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2977
    ].
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2978
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2979
    ^ newColl
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2980
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2981
    "
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2982
     #( 'aa' 'bb' '' 'cc' ) joinWith:'|' from:1 to:4 as:String  
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2983
     #( 'aa' 'bb' '' 'cc' ) joinWith:nil from:1 to:4 as:String  
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2984
     #( 'aa' 'bb' '' 'cc' ) joinWith:'|' from:1 to:4 as:Array   
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2985
     #( (1 2 3) (4 5 6) (7 6 8) ) joinWith:#(nil) from:1 to:3 as:OrderedCollection  
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2986
     #( (1 2 3) (4 5 6) (7 6 8) ) joinWith:nil from:1 to:3 as:nil                
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2987
    "
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2988
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2989
    "Created: / 17.6.1998 / 12:30:32 / cg"
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2990
    "Modified: / 17.6.1998 / 12:31:59 / cg"
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2991
!
672133ad1b1b class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14621
diff changeset
  2992
11827
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  2993
subCollections:aBlock 
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  2994
    "Answser an ordered collection of ordered collections
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  2995
     where each subcollection is delimited by an element of the receiver
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  2996
     for which the given block evaluates to true."
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  2997
    
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  2998
    |str answer current e|
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  2999
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3000
    str := self readStream.
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3001
    answer := OrderedCollection new.
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3002
    current := OrderedCollection new.
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3003
    [ str atEnd ] whileFalse:[
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3004
        e := str next.
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3005
        current add:e.
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3006
        (aBlock value:e) ifTrue:[
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3007
            answer add:current.
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3008
            current := OrderedCollection new
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3009
        ]
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3010
    ].
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3011
    current notEmpty ifTrue:[
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3012
        answer add:current
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3013
    ].
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3014
    ^ answer
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3015
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3016
    "
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3017
     #( 1 2 3 nil 4 5 6 nil 7 8 9 nil ) subCollections:[:el | el isNil].
8c59f73d3ab6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11820
diff changeset
  3018
    "
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  3019
! !
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  3020
7253
471856209f4c reindexing added
Claus Gittinger <cg@exept.de>
parents: 7130
diff changeset
  3021
!SequenceableCollection methodsFor:'converting-reindexed'!
471856209f4c reindexing added
Claus Gittinger <cg@exept.de>
parents: 7130
diff changeset
  3022
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3023
from:startIndex
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3024
    "Create a ReindexedCollection from the receiver.
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3025
     The new collection represents the elements starting at startIndex to the end.
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3026
     (i.e. logically it represents the receiver copyFrom:startIndex,
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3027
     however, physically, no copy is made).
9291
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3028
     Warning:
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3029
        The slice SHARES the memory for the element-data with the original,
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3030
        this means that any modifications in the original are visible in the slice
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3031
        and vice versa."
7253
471856209f4c reindexing added
Claus Gittinger <cg@exept.de>
parents: 7130
diff changeset
  3032
471856209f4c reindexing added
Claus Gittinger <cg@exept.de>
parents: 7130
diff changeset
  3033
    ^ self
9291
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3034
        from:startIndex
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3035
        to:self size
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3036
        by:1
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3037
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3038
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3039
     #(1 2 3 4 5 6 7) from:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3040
     ( #(1 2 3 4 5 6 7) from:3 ) first
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3041
     ( #(1 2 3 4 5 6 7) from:3 ) last
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3042
     ( #(1 2 3 4 5 6 7) from:3 ) size
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3043
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3044
!
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3045
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3046
from:startIndex by:step
9291
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3047
    "Create a ReindexedCollection from the receiver.
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3048
     The new collection represents the elements starting at startIndex to the end.
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3049
     (i.e. logically it represents the receiver copyFrom:startIndex,
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3050
     however, physically, no copy is made).
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3051
     Warning:
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3052
        The slice SHARES the memory for the element-data with the original,
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3053
        this means that any modifications in the original are visible in the slice
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3054
        and vice versa."
7253
471856209f4c reindexing added
Claus Gittinger <cg@exept.de>
parents: 7130
diff changeset
  3055
471856209f4c reindexing added
Claus Gittinger <cg@exept.de>
parents: 7130
diff changeset
  3056
    ^ self
9291
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3057
        from:startIndex
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3058
        to:(step > 1
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3059
            ifTrue: [self size]
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3060
            ifFalse: [1])
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3061
        by:step
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3062
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3063
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3064
     #(1 2 3 4 5 6 7) from:3 by:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3065
     ( #(1 2 3 4 5 6 7) from:3 by:2) first
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3066
     ( #(1 2 3 4 5 6 7) from:3 by:2) last
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3067
     ( #(1 2 3 4 5 6 7) from:3 by:2) size
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3068
    "
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3069
!
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3070
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3071
from:startIndex count:numberOfElements
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3072
    "return a sub-collection consisting of numberOfElements elements
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3073
     in the receiver starting at index start (i.e. reference to a slice).
9291
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3074
     Warning:
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3075
        The slice SHARES the memory for the element-data with the original,
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3076
        this means that any modifications in the original are visible in the slice
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3077
        and vice versa."
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3078
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3079
    ^ self
9291
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3080
        from:startIndex
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3081
        to:(startIndex + numberOfElements - 1)
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3082
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3083
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3084
     #($a $b $c $d $e $f $g) from:2 count:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3085
     '1234567890' from:2 count:5
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3086
    "
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3087
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3088
    "
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3089
     |coll slice|
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3090
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3091
     coll := #(1 2 3 4 5 6 7 8 9 10) copy.
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3092
     slice := coll from:3 to:7.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3093
     slice.
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3094
     coll at:4 put:40.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3095
     slice.
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3096
    "
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3097
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3098
    "
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3099
     |coll slice|
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3100
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3101
     coll := #(1 2 3 4 5 6 7 8 9 10) copy.
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3102
     slice := coll from:3 to:7.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3103
     slice.
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3104
     slice at:1 put:40.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3105
     slice.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3106
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3107
!
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3108
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3109
from:startIndex to:endIndex
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3110
    "Create a ReindexedCollection from the receiver.
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3111
     The new collection represents the elements starting at startIndex to endIndex.
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3112
     (i.e. logically it represents the receiver copyFrom:startIndex,
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3113
     however, physically, no copy is made).
9291
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3114
     Warning:
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3115
        The slice SHARES the memory for the element-data with the original,
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3116
        this means that any modifications in the original are visible in the slice
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3117
        and vice versa."
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3118
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3119
    ^ self
9291
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3120
        from:startIndex
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3121
        to:endIndex
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3122
        by: (startIndex <= endIndex
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3123
            ifTrue: [1]
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3124
            ifFalse: [-1])
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3125
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3126
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3127
     #(1 2 3 4 5 6 7) from:3 to:6
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3128
     ( #(1 2 3 4 5 6 7) from:3 to:6) first
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3129
     ( #(1 2 3 4 5 6 7) from:3 to:6) last
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3130
     ( #(1 2 3 4 5 6 7) from:3 to:6) size
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3131
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3132
!
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3133
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3134
from:startIndex to:endIndex by:step
9291
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3135
    "Create a ReindexedCollection from the receiver.
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3136
     The new collection represents the receiver's elements up to endIndex.
9291
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3137
     (i.e. logically it represents the receiver copyTo:endIndex,
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3138
     however, physically, no copy is made).
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3139
     Warning:
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3140
        The slice SHARES the memory for the element-data with the original,
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3141
        this means that any modifications in the original are visible in the slice
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3142
        and vice versa."
7253
471856209f4c reindexing added
Claus Gittinger <cg@exept.de>
parents: 7130
diff changeset
  3143
471856209f4c reindexing added
Claus Gittinger <cg@exept.de>
parents: 7130
diff changeset
  3144
    ^ ReindexedCollection
9291
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3145
        on:self
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3146
        from:startIndex
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3147
        to:endIndex
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3148
        by:step
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3149
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3150
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3151
     #(1 2 3 4 5 6 7) from:3 to:7 by:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3152
     ( #(1 2 3 4 5 6 7) from:3 to:7 by:2) first
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3153
     ( #(1 2 3 4 5 6 7) from:3 to:7 by:2) last
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3154
     ( #(1 2 3 4 5 6 7) from:3 to:7 by:2) size
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3155
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3156
!
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3157
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3158
to:endIndex
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3159
    "Create a ReindexedCollection from the receiver.
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3160
     The new collection represents the receiver's elements up to endIndex.
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3161
     (i.e. logically it represents the receiver copyTo:endIndex,
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3162
     however, physically, no copy is made).
9291
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3163
     Warning:
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3164
        The slice SHARES the memory for the element-data with the original,
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3165
        this means that any modifications in the original are visible in the slice
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3166
        and vice versa."
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3167
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3168
    ^ self
9291
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3169
        from:1
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3170
        to:endIndex
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3171
        by:1
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3172
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3173
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3174
     #(1 2 3 4 5 6 7) to:4
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3175
     ( #(1 2 3 4 5 6 7) to:4) first
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3176
     ( #(1 2 3 4 5 6 7) to:4) last
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3177
     ( #(1 2 3 4 5 6 7) to:4) size
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3178
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3179
!
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3180
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3181
to:endIndex by:step
9291
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3182
    "Create a ReindexedCollection from the receiver.
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3183
     The new collection represents the receiver's elements up to endIndex.
9291
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3184
     (i.e. logically it represents the receiver copyTo:endIndex,
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3185
     however, physically, no copy is made).
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3186
     Warning:
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3187
        The slice SHARES the memory for the element-data with the original,
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3188
        this means that any modifications in the original are visible in the slice
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3189
        and vice versa."
7253
471856209f4c reindexing added
Claus Gittinger <cg@exept.de>
parents: 7130
diff changeset
  3190
471856209f4c reindexing added
Claus Gittinger <cg@exept.de>
parents: 7130
diff changeset
  3191
    ^ self
9291
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3192
        from:(step > 0
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3193
            ifTrue: [1]
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3194
            ifFalse: [self size])
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3195
        to:endIndex
be3930ee8369 comments
Claus Gittinger <cg@exept.de>
parents: 9250
diff changeset
  3196
        by:step
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3197
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3198
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3199
     #(1 2 3 4 5 6 7) to:4 by:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3200
     ( #(1 2 3 4 5 6 7) to:4 by:2) first
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3201
     ( #(1 2 3 4 5 6 7) to:4 by:2) last
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3202
     ( #(1 2 3 4 5 6 7) to:4 by:2) size
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3203
    "
7253
471856209f4c reindexing added
Claus Gittinger <cg@exept.de>
parents: 7130
diff changeset
  3204
! !
471856209f4c reindexing added
Claus Gittinger <cg@exept.de>
parents: 7130
diff changeset
  3205
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3206
!SequenceableCollection methodsFor:'copying'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3207
9106
504225e0ec25 added #++
Claus Gittinger <cg@exept.de>
parents: 9072
diff changeset
  3208
++ aCollection
504225e0ec25 added #++
Claus Gittinger <cg@exept.de>
parents: 9072
diff changeset
  3209
    "return a new collection formed from concatenating the receiver with
504225e0ec25 added #++
Claus Gittinger <cg@exept.de>
parents: 9072
diff changeset
  3210
     the argument. The class of the new collection is determined by the
504225e0ec25 added #++
Claus Gittinger <cg@exept.de>
parents: 9072
diff changeset
  3211
     receivers class, so mixing classes is possible, if the second collections
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3212
     elements can be stored into instances of the receiver's class.
14010
de414d20a4ca comment/format in: #++
Claus Gittinger <cg@exept.de>
parents: 13945
diff changeset
  3213
     This is just syntactic sugar for javascript"
9106
504225e0ec25 added #++
Claus Gittinger <cg@exept.de>
parents: 9072
diff changeset
  3214
504225e0ec25 added #++
Claus Gittinger <cg@exept.de>
parents: 9072
diff changeset
  3215
    ^ self , aCollection
504225e0ec25 added #++
Claus Gittinger <cg@exept.de>
parents: 9072
diff changeset
  3216
504225e0ec25 added #++
Claus Gittinger <cg@exept.de>
parents: 9072
diff changeset
  3217
    "
504225e0ec25 added #++
Claus Gittinger <cg@exept.de>
parents: 9072
diff changeset
  3218
     #($a $b $c) ++ #(1 2 3)
504225e0ec25 added #++
Claus Gittinger <cg@exept.de>
parents: 9072
diff changeset
  3219
     #($a $b $c) ++ '123'
504225e0ec25 added #++
Claus Gittinger <cg@exept.de>
parents: 9072
diff changeset
  3220
     'abc' ++ '123'
504225e0ec25 added #++
Claus Gittinger <cg@exept.de>
parents: 9072
diff changeset
  3221
     'abc' ++ #($q $w $e $r $t $y) asSortedCollection
504225e0ec25 added #++
Claus Gittinger <cg@exept.de>
parents: 9072
diff changeset
  3222
     'abc' ++ #(1 2 3 4 5)"  "-- will fail, since strings cannot store integers
504225e0ec25 added #++
Claus Gittinger <cg@exept.de>
parents: 9072
diff changeset
  3223
     'abc' asArray ++ #(1 2 3 4 5)
504225e0ec25 added #++
Claus Gittinger <cg@exept.de>
parents: 9072
diff changeset
  3224
    "
14010
de414d20a4ca comment/format in: #++
Claus Gittinger <cg@exept.de>
parents: 13945
diff changeset
  3225
de414d20a4ca comment/format in: #++
Claus Gittinger <cg@exept.de>
parents: 13945
diff changeset
  3226
    "Modified (comment): / 14-02-2012 / 14:17:11 / cg"
9106
504225e0ec25 added #++
Claus Gittinger <cg@exept.de>
parents: 9072
diff changeset
  3227
!
504225e0ec25 added #++
Claus Gittinger <cg@exept.de>
parents: 9072
diff changeset
  3228
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3229
, aCollection
14073
2ff944d004ea comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 14029
diff changeset
  3230
    "return a new collection formed from concatenating the receiver with the argument. 
2ff944d004ea comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 14029
diff changeset
  3231
     The class of the new collection is determined by the
2ff944d004ea comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 14029
diff changeset
  3232
     receiver's class, so mixing classes is possible, if the second collection's
2ff944d004ea comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 14029
diff changeset
  3233
     elements can be stored into instances of the receiver's class."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3234
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3235
    |newCollection
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3236
     mySize    "{ Class: SmallInteger }"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3237
     newSize   "{ Class: SmallInteger }"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3238
     otherSize "{ Class: SmallInteger }"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3239
     dstIndex  "{ Class: SmallInteger }"|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3240
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3241
    mySize := self size.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3242
    otherSize := aCollection size.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3243
    newSize := mySize + otherSize.
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  3244
252
  3245
    newCollection := self copyEmptyAndGrow:newSize.   "must grow, otherwise replace fails"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3246
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3247
    newCollection replaceFrom:1 to:mySize with:self startingAt:1.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3248
    dstIndex := mySize + 1.
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  3249
    aCollection isSequenceable ifTrue:[
14073
2ff944d004ea comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 14029
diff changeset
  3250
        "
2ff944d004ea comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 14029
diff changeset
  3251
         yes, aCollection has indexed elements
2ff944d004ea comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 14029
diff changeset
  3252
        "
2ff944d004ea comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 14029
diff changeset
  3253
        newCollection replaceFrom:dstIndex to:newSize with:aCollection startingAt:1.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3254
    ] ifFalse:[
14073
2ff944d004ea comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 14029
diff changeset
  3255
        "
2ff944d004ea comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 14029
diff changeset
  3256
         no, enumerate aCollection
2ff944d004ea comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 14029
diff changeset
  3257
        "
2ff944d004ea comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 14029
diff changeset
  3258
        aCollection do:[:element |
2ff944d004ea comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 14029
diff changeset
  3259
            newCollection at:dstIndex put:element.
2ff944d004ea comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 14029
diff changeset
  3260
            dstIndex := dstIndex + 1
2ff944d004ea comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 14029
diff changeset
  3261
        ]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3262
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3263
    ^ newCollection
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  3264
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3265
    "
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3266
     #($a $b $c) , #(1 2 3)
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3267
     #($a $b $c) , '123'
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3268
     'abc' , '123'
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3269
     'abc' , #($q $w $e $r $t $y) asSortedCollection
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3270
     'abc' , #(1 2 3 4 5)"  "-- will fail, since strings cannot store integers
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3271
     'abc' asArray , #(1 2 3 4 5)
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3272
    "
14073
2ff944d004ea comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 14029
diff changeset
  3273
2ff944d004ea comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 14029
diff changeset
  3274
    "Modified (comment): / 01-04-2012 / 13:17:56 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3275
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3276
5206
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3277
copyButFirst:count
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3278
    "return a new collection consisting of the receiver's elements
5206
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3279
     except for the first count elements - for convenience."
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3280
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3281
    ^ self copyFrom:(count + 1)
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3282
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3283
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3284
     #($a $b $c $d $e $f $g) copyButFirst:2
5206
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3285
     '1234567890' copyButFirst:2
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3286
    "
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3287
!
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3288
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3289
copyButLast:count
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3290
    "return a new collection consisting of the receiver's elements
5206
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3291
     except for the last count elements - for convenience."
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3292
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3293
    ^ self copyTo:(self size - count)
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3294
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3295
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3296
     #($a $b $c $d $e $f $g) copyButLast:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3297
     '1234567890' copyButLast:2
5206
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3298
    "
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3299
!
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3300
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3301
copyFirst:count
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3302
    "return a new collection consisting of the receiver's first count
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3303
     elements - this is just a rename of copyTo: - for compatibility."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3304
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3305
    ^ self copyFrom:1 to:count
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3306
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3307
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3308
     #($a $b $c $d $e $f $g) copyFirst:5
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3309
     '1234567890' copyFirst:4
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3310
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3311
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3312
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3313
copyFrom:startIndex
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3314
    "return a new collection consisting of receiver's elements from startIndex to the end of the collection.
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3315
     Return an empty collection, if startIndex is beyond the receivers size."
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3316
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3317
    ^ self copyFrom:startIndex to:(self size)
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3318
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3319
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3320
     #($a $b $c $d $e $f $g) copyFrom:2
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3321
     '1234567890' copyFrom:2
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3322
     (10 to:19) copyFrom:5
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3323
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3324
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3325
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3326
copyFrom:startIndex count:numberOfElements
2413
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  3327
    "return a new collection consisting of numberOfElements elements
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  3328
     extracted from the receiver starting at index start
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3329
     (i.e. extract a slice).
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3330
     Returns an empty collection if startIndex is beyond the receiver's size.
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3331
     Raise an error, if stopIndex is out of range."
2413
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  3332
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  3333
    ^ self
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3334
        copyFrom:startIndex
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3335
        to:(startIndex + numberOfElements - 1)
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3336
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3337
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3338
     #($a $b $c $d $e $f $g) copyFrom:2 count:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3339
     '1234567890' copyFrom:2 count:5
2413
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  3340
    "
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  3341
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  3342
    "Modified: 20.2.1997 / 14:23:01 / cg"
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  3343
!
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  3344
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3345
copyFrom:startIndex to:stopIndex
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3346
    "return a new collection consisting of receiver's elements
4403
eb4379909671 comment
Claus Gittinger <cg@exept.de>
parents: 4402
diff changeset
  3347
     between start and stop.
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3348
     Returns an empty collection if startIndex is beyond the receiver's size.
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3349
     Raise an error, if stopIndex is out of range."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3350
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3351
    |newCollection newSize|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3352
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3353
    newSize := stopIndex - startIndex + 1.
4402
7c19502120b7 care for bad startIndex in #copyFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
  3354
    newSize < 0 ifTrue:[
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3355
        newSize := 0
4402
7c19502120b7 care for bad startIndex in #copyFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
  3356
    ].
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3357
    newCollection := self copyEmptyAndGrow:newSize.
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3358
    newCollection replaceFrom:1 to:newSize with:self startingAt:startIndex.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3359
    ^ newCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3360
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3361
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3362
     #($a $b $c $d $e $f $g) copyFrom:2 to:5
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3363
     '1234567890' copyFrom:2 to:5
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3364
     (1 to:10) copyFrom:2 to:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3365
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3366
     '1234567890' copyFrom:2 to:15
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3367
     (1 to:10) copyFrom:12 to:15
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3368
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3369
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3370
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3371
copyLast:count
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3372
    "return a new collection consisting of the receiver's last count elements."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3373
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3374
    |sz|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3375
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3376
    sz := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3377
    ^ self copyFrom:(sz - count + 1) to:sz
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3378
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3379
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3380
     #($a $b $c $d $e $f $g) copyLast:5
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3381
     '1234567890' copyLast:4
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3382
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3383
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3384
11841
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3385
copyMapping:map
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3386
    "return a copy, where elements all replaced via the given mapping.
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3387
     If the element is present as key in map, it is replaced by a corresponding value from the map.
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3388
     Otherwise, it is left unchanged."
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3389
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3390
    |s|
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3391
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3392
    s := WriteStream on:self species new.
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3393
    self do:[:el |
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3394
        s nextPut:(map at:el ifAbsent:el)
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3395
    ].
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3396
    ^ s contents
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3397
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3398
    "
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3399
     |map|
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3400
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3401
     map := Dictionary new
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3402
                at:1 put:'one';
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3403
                at:2 put:'two';
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3404
                yourself.
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3405
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3406
     #(1 2 3 4 1 2 3 4) copyMapping:map
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3407
    "
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3408
!
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3409
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3410
copyMappingFrom:inMap to:outMap
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3411
    "return a copy, where elements all replaced via the given mapping.
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3412
     If the element is present in inmap, it is replaced by a corresponding value from outmap.
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3413
     Otherwise, it is left unchanged."
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3414
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3415
    |d|
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3416
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3417
    d := Dictionary new.
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3418
    inMap keysAndValuesDo:[:k :i | d at:i put:(outMap at:k)].
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3419
    ^ self copyMapping:d
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3420
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3421
    "
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3422
     #(1 2 3 4 1 2 3 4) copyMappingFrom:#(1 2) to:#('one' 'two')  
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3423
     'hello' copyMappingFrom:'eo' to:'**'    
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3424
    "
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3425
!
3cb1b7bcc47a +copyMapping
Claus Gittinger <cg@exept.de>
parents: 11840
diff changeset
  3426
3653
cc018fcae490 added #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  3427
copyReplaceAll:oldElement with:newElement
cc018fcae490 added #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  3428
    "return a copy of the receiver, where all elements equal to oldElement
cc018fcae490 added #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  3429
     have been replaced by newElement."
cc018fcae490 added #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  3430
6054
7719f857af51 added #copyReplacing:withObject: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6027
diff changeset
  3431
"/    'Warning: #copyReplaceAll:with: will change semantics as defined in ANSI soon' errorPrintCR.
3653
cc018fcae490 added #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  3432
    ^ self copy replaceAll:oldElement with:newElement
cc018fcae490 added #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  3433
cc018fcae490 added #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  3434
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3435
     #(1 2 1 2 1 2 1 2 1 2) copyReplaceAll:1 with:99
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3436
     'hello world' copyReplaceAll:$l with:$*
3653
cc018fcae490 added #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  3437
    "
cc018fcae490 added #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  3438
cc018fcae490 added #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  3439
    "Modified: / 18.7.1998 / 22:52:17 / cg"
cc018fcae490 added #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  3440
!
cc018fcae490 added #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  3441
3992
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3442
copyReplaceAll:oldObject withAll:aCollection
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3443
    "return a copy, where all oldObjects are replaced by all
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3444
     elements from aCollection (i.e. sliced in).
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3445
     Non-destructive; returns a new collection.
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3446
     The implementation here is a general-purpose one;
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3447
     and should be redefined in String, if heavily used."
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3448
5489
76788e74329f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5471
diff changeset
  3449
    |s|
3992
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3450
6054
7719f857af51 added #copyReplacing:withObject: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6027
diff changeset
  3451
"/    'Warning: #copyReplaceAll:withAll: will change semantics as defined in ANSI soon' errorPrintCR.
7719f857af51 added #copyReplacing:withObject: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6027
diff changeset
  3452
3992
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3453
    s := WriteStream on:self species new.
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3454
    self do:[:el |
11840
160aca0ef697 changed #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
  3455
        el = oldObject ifTrue:[
160aca0ef697 changed #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
  3456
            s nextPutAll:aCollection
160aca0ef697 changed #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
  3457
        ] ifFalse:[
160aca0ef697 changed #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
  3458
            s nextPut:el
160aca0ef697 changed #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
  3459
        ]
3992
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3460
    ].
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3461
    ^ s contents
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3462
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3463
    "
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3464
     args:    oldObject  : <object>
11840
160aca0ef697 changed #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
  3465
              newObject  : <collection>
3992
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3466
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3467
     returns: newCollection
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3468
    "
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3469
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3470
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3471
     '123123abc123' copyReplaceAll:$1 withAll:'one'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3472
     #(1 2 3 4 1 2 3 4) copyReplaceAll:1 withAll:'one'
3992
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3473
    "
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3474
!
549eefe16a28 added #copyReplaceAll:withAll:
Claus Gittinger <cg@exept.de>
parents: 3887
diff changeset
  3475
14947
e9a0049c0ef1 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14893
diff changeset
  3476
copyReplaceAny:collectionOfOldElements with:newElement
e9a0049c0ef1 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14893
diff changeset
  3477
    "return a copy of the receiver, where all elements equal to any in collectionOfOldElements
e9a0049c0ef1 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14893
diff changeset
  3478
     have been replaced by newElement."
e9a0049c0ef1 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14893
diff changeset
  3479
e9a0049c0ef1 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14893
diff changeset
  3480
    ^ self copy replaceAny:collectionOfOldElements with:newElement
e9a0049c0ef1 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14893
diff changeset
  3481
e9a0049c0ef1 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14893
diff changeset
  3482
    "
e9a0049c0ef1 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14893
diff changeset
  3483
     #(1 2 3 1 2 3 1 2 3 4 1 2 3 1 2 3) copyReplaceAny:#(1 2) with:99
e9a0049c0ef1 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14893
diff changeset
  3484
     'hello world' copyReplaceAny:'eo' with:$*
e9a0049c0ef1 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14893
diff changeset
  3485
    "
e9a0049c0ef1 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14893
diff changeset
  3486
!
e9a0049c0ef1 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14893
diff changeset
  3487
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3488
copyReplaceFrom:startIndex to:endIndex with:aCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3489
    "return a copy of the receiver, where the elements from startIndex to
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3490
     endIndex have been replaced by the elements of aCollection"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3491
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3492
    |newColl sz replSize|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3493
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3494
    replSize := aCollection size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3495
    sz := self size - (endIndex - startIndex + 1) + replSize.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3496
    newColl := self copyEmptyAndGrow:sz.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3497
    newColl replaceFrom:1 to:(startIndex - 1) with:self.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3498
    newColl replaceFrom:startIndex with:aCollection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3499
    newColl replaceFrom:(startIndex + replSize) with:self startingAt:(endIndex + 1).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3500
    ^ newColl
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3501
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3502
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3503
     #(1 2 3 4 5 6 7 8 9 0) copyReplaceFrom:3 to:6 with:#(a b c d e f g h i j k)
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3504
     'hello world' copyReplaceFrom:6 to:6 with:' there, '
14265
f9f9a9d170a1 comment/format in: #copyReplaceFrom:to:with:
Claus Gittinger <cg@exept.de>
parents: 14238
diff changeset
  3505
     'one two three' copyReplaceFrom:5 to:7 with:'zwei'
f9f9a9d170a1 comment/format in: #copyReplaceFrom:to:with:
Claus Gittinger <cg@exept.de>
parents: 14238
diff changeset
  3506
f9f9a9d170a1 comment/format in: #copyReplaceFrom:to:with:
Claus Gittinger <cg@exept.de>
parents: 14238
diff changeset
  3507
    the following is something we want, not an unexpected side feature:
f9f9a9d170a1 comment/format in: #copyReplaceFrom:to:with:
Claus Gittinger <cg@exept.de>
parents: 14238
diff changeset
  3508
     '12345' copyReplaceFrom:5 to:4 with:'xxx'
f9f9a9d170a1 comment/format in: #copyReplaceFrom:to:with:
Claus Gittinger <cg@exept.de>
parents: 14238
diff changeset
  3509
    "
f9f9a9d170a1 comment/format in: #copyReplaceFrom:to:with:
Claus Gittinger <cg@exept.de>
parents: 14238
diff changeset
  3510
f9f9a9d170a1 comment/format in: #copyReplaceFrom:to:with:
Claus Gittinger <cg@exept.de>
parents: 14238
diff changeset
  3511
    "Modified (comment): / 27-07-2012 / 16:39:17 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3512
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3513
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3514
copyReplaceFrom:startIndex with:aCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3515
    "return a copy of the receiver, where the elements from startIndex to
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3516
     the end have been replaced by the elements of aCollection"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3517
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3518
    ^ self copyReplaceFrom:startIndex to:(self size) with:aCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3519
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3520
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3521
     #(1 2 3 4 5 6 7 8 9 0) copyReplaceFrom:3 with:#(a b c)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3522
     'hello world' copyReplaceFrom:7 with:'smalltalk fan'
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3523
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3524
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3525
6054
7719f857af51 added #copyReplacing:withObject: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6027
diff changeset
  3526
copyReplacing:oldElement withObject:newElement
7719f857af51 added #copyReplacing:withObject: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6027
diff changeset
  3527
    "return a copy of the receiver, where all elements equal to oldElement
7719f857af51 added #copyReplacing:withObject: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6027
diff changeset
  3528
     have been replaced by newElement.
7719f857af51 added #copyReplacing:withObject: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6027
diff changeset
  3529
     ANSI version of what used to be #copyReplaceAll:with:"
7719f857af51 added #copyReplacing:withObject: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6027
diff changeset
  3530
7719f857af51 added #copyReplacing:withObject: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6027
diff changeset
  3531
    ^ self copy replaceAll:oldElement with:newElement
7719f857af51 added #copyReplacing:withObject: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6027
diff changeset
  3532
7719f857af51 added #copyReplacing:withObject: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6027
diff changeset
  3533
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3534
     #(1 2 1 2 1 2 1 2 1 2) copyReplacing:1 withObject:99
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3535
     'hello world' copyReplacing:$l withObject:$*
6054
7719f857af51 added #copyReplacing:withObject: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6027
diff changeset
  3536
    "
7719f857af51 added #copyReplacing:withObject: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6027
diff changeset
  3537
!
7719f857af51 added #copyReplacing:withObject: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6027
diff changeset
  3538
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3539
copyThrough:element
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3540
    "return a new collection consisting of the receiver elements
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3541
     up-to (AND including) the first occurrence of element."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3542
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3543
    |idx|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3544
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3545
    idx := self indexOf:element.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3546
    idx == 0 ifTrue:[^ nil].    "question: is this ok?"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3547
    ^ self copyFrom:1 to:idx
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3548
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3549
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3550
     #($a $b $c $d $e $f $g) copyThrough:$d
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3551
     '1234567890' copyThrough:$5
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3552
     '1234567890' copyThrough:$a
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3553
     '1234567890' copyThrough:$1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3554
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3555
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3556
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3557
copyTo:stopIndex
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3558
    "Return a new collection consisting of receiver's elements from 1 up to (including) stopIndex.
8373
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3559
     Raise an error, if stopIndex is out of range."
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3560
bd8ef62e964c comments in reindexing methods
Claus Gittinger <cg@exept.de>
parents: 8367
diff changeset
  3561
    ^ self copyFrom:1 to:stopIndex
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3562
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3563
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3564
     #($a $b $c $d $e $f $g) copyTo:5
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3565
     '1234567890' copyTo:4
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3566
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3567
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3568
5526
bd0465978366 added #copyToMax:
Claus Gittinger <cg@exept.de>
parents: 5520
diff changeset
  3569
copyToMax:stop
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3570
    "return a new collection consisting of receiver's elements
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3571
     from 1 up to (including) index stop, or up to the receivers end,
5526
bd0465978366 added #copyToMax:
Claus Gittinger <cg@exept.de>
parents: 5520
diff changeset
  3572
     whichever is smaller (i.e. like copyTo:, but do not err if receiver is smaller"
bd0465978366 added #copyToMax:
Claus Gittinger <cg@exept.de>
parents: 5520
diff changeset
  3573
bd0465978366 added #copyToMax:
Claus Gittinger <cg@exept.de>
parents: 5520
diff changeset
  3574
    ^ self copyFrom:1 to:(self size min:stop)
bd0465978366 added #copyToMax:
Claus Gittinger <cg@exept.de>
parents: 5520
diff changeset
  3575
bd0465978366 added #copyToMax:
Claus Gittinger <cg@exept.de>
parents: 5520
diff changeset
  3576
    "
bd0465978366 added #copyToMax:
Claus Gittinger <cg@exept.de>
parents: 5520
diff changeset
  3577
     #($a $b $c $d $e $f $g) copyTo:10  - raises an error
bd0465978366 added #copyToMax:
Claus Gittinger <cg@exept.de>
parents: 5520
diff changeset
  3578
     #($a $b $c $d $e $f $g) copyToMax:10
bd0465978366 added #copyToMax:
Claus Gittinger <cg@exept.de>
parents: 5520
diff changeset
  3579
    "
bd0465978366 added #copyToMax:
Claus Gittinger <cg@exept.de>
parents: 5520
diff changeset
  3580
!
bd0465978366 added #copyToMax:
Claus Gittinger <cg@exept.de>
parents: 5520
diff changeset
  3581
11844
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3582
copyTransliterating:oldElements to:newElements
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3583
    "return a copy, where elements all transliterated via the given mapping.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3584
     The transiteraion works like perl's tr operator.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3585
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3586
     Transliterates all occurrences of the characters found in the search list with the 
11880
066c4971a69d comment
Claus Gittinger <cg@exept.de>
parents: 11879
diff changeset
  3587
     corresponding character in the replacement list. 
11844
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3588
     A character range may be specified with a hyphen, so /A-J/0-9/ does the same replacement as 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3589
     /ACEGIBDFHJ/0246813579/. The hyphen may be escaped with a backslash as in /0\-1).
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3590
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3591
     Note that tr does not do other character escapes such as \n. 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3592
     If you want to map strings between lower/upper cases, see asUpperCase and asLowerCase.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3593
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3594
     Note also that the whole range idea is rather unportable between character sets,
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3595
     and even within character sets they may cause results you probably didn't expect. 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3596
     A sound principle is to use only ranges that begin from and end at either alphabets of equal 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3597
     case (a-e, A-E), or digits (0-4). 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3598
     Anything else is unsafe. If in doubt, spell out the character sets in full.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3599
    "
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3600
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3601
    ^ self
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3602
        copyTransliterating:oldElements to:newElements
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3603
        complement:false squashDuplicates:false
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3604
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3605
    "
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3606
     'abcdefghijkl1234567890' copyTransliterating:'b-g' to:'B-G'  
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3607
     'abcdefghijkl1234567890' copyTransliterating:'69' to:'96'      
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3608
     'abcdefghijkl1234567890' copyTransliterating:'a' to:'b'        
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3609
     'abcdefghijkl1234567890' copyTransliterating:'aeiou' to:'AEIOU' 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3610
     'abcdefghijkl1234567890' copyTransliterating:'0-9' to:'QERTYUIOPX' 
11880
066c4971a69d comment
Claus Gittinger <cg@exept.de>
parents: 11879
diff changeset
  3611
066c4971a69d comment
Claus Gittinger <cg@exept.de>
parents: 11879
diff changeset
  3612
     can also be used to remove character:
066c4971a69d comment
Claus Gittinger <cg@exept.de>
parents: 11879
diff changeset
  3613
     'abcdefghijkl1234567890' copyTransliterating:'aeiou' to:''
066c4971a69d comment
Claus Gittinger <cg@exept.de>
parents: 11879
diff changeset
  3614
066c4971a69d comment
Claus Gittinger <cg@exept.de>
parents: 11879
diff changeset
  3615
     'abcdefg
066c4971a69d comment
Claus Gittinger <cg@exept.de>
parents: 11879
diff changeset
  3616
hijkl1
066c4971a69d comment
Claus Gittinger <cg@exept.de>
parents: 11879
diff changeset
  3617
234567890' copyTransliterating:(Array with:Character cr) to:''        
066c4971a69d comment
Claus Gittinger <cg@exept.de>
parents: 11879
diff changeset
  3618
11844
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3619
    "
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3620
!
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3621
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3622
copyTransliterating:oldElements to:newElements 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3623
        complement:complement squashDuplicates:squashDuplicates
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3624
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3625
    "return a copy, where elements all transliterated via the given mapping.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3626
     The transiteraion works like perl's tr operator.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3627
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3628
     Transliterates all occurrences of the characters found in the search list with the 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3629
     corresponding character in the replacement list. It returns the number of characters replaced 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3630
     or deleted.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3631
     A character range may be specified with a hyphen, so /A-J/0-9/ does the same replacement as 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3632
     /ACEGIBDFHJ/0246813579/. The hyphen may be escaped with a backslash as in /0\-1).
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3633
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3634
     Note that tr does not do other character escapes such as \n. 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3635
     If you want to map strings between lower/upper cases, see asUpperCase and asLowerCase.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3636
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3637
     Note also that the whole range idea is rather unportable between character sets,
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3638
     and even within character sets they may cause results you probably didn't expect. 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3639
     A sound principle is to use only ranges that begin from and end at either alphabets of equal 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3640
     case (a-e, A-E), or digits (0-4). 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3641
     Anything else is unsafe. If in doubt, spell out the character sets in full.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3642
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3643
     If complement is true, non-matching chars are affected.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3644
     If squashDuplicates is true, translated duplicates are squashed (but not non-matches)
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3645
    "
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3646
11875
79f71cb2270b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11870
diff changeset
  3647
    |map s1 s2 range1 range2 c1 c2 outStream prevXlated last inc|
11844
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3648
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3649
    map := Dictionary new.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3650
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3651
    s1 := oldElements readStream.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3652
    s2 := newElements readStream.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3653
    range1 := range2 := nil.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3654
    [
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3655
        (range1 notNil and:[range1 atEnd]) ifTrue:[range1 := nil]. 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3656
        range1 notNil or:[ s1 atEnd not ]
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3657
    ] whileTrue:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3658
        range1 notNil ifTrue:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3659
            c1 := range1 next.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3660
            range1 atEnd ifTrue:[range1 := nil]. 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3661
        ] ifFalse:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3662
            c1 := s1 next.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3663
            s1 peek == $\ ifTrue:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3664
                s1 next.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3665
            ] ifFalse:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3666
                s1 peek == $- ifTrue:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3667
                    s1 next.
11875
79f71cb2270b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11870
diff changeset
  3668
                    last := s1 next.
79f71cb2270b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11870
diff changeset
  3669
                    inc := c1 < last ifTrue:[1] ifFalse:[-1].
79f71cb2270b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11870
diff changeset
  3670
                    range1 := (c1 to:last by:inc) readStream.
11844
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3671
                    c1 := range1 next.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3672
                    range1 atEnd ifTrue:[range1 := nil]. 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3673
                ].
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3674
            ].
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3675
        ].
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3676
        range2 notNil ifTrue:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3677
            c2 := range2 next.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3678
            range2 atEnd ifTrue:[range2 := nil]. 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3679
        ] ifFalse:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3680
            s2 atEnd ifTrue:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3681
                "/ keep c2
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3682
            ] ifFalse:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3683
                c2 := s2 next.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3684
                s2 peek == $\ ifTrue:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3685
                    s1 next.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3686
                ] ifFalse:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3687
                    s2 peek == $- ifTrue:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3688
                        s2 next.
11875
79f71cb2270b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11870
diff changeset
  3689
                        last := s2 next.
79f71cb2270b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11870
diff changeset
  3690
                        inc := c2 < last ifTrue:[1] ifFalse:[-1].
79f71cb2270b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11870
diff changeset
  3691
                        range2 := (c2 to:last by:inc) readStream.
11844
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3692
                        c2 := range2 next.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3693
                        range2 atEnd ifTrue:[range2 := nil]. 
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3694
                    ].
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3695
                ].
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3696
            ].
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3697
        ].
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3698
        map at:c1 put:c2
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3699
    ].
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3700
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3701
    outStream := WriteStream on:(self species new).
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3702
    self do:[:el |
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3703
        |xLated out|
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3704
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3705
        complement ifTrue:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3706
            (map includesKey:el) ifTrue:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3707
                xLated := out := el.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3708
            ] ifFalse:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3709
                out := newElements at:1 ifAbsent:nil.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3710
            ].
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3711
        ] ifFalse:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3712
            (map includesKey:el) ifTrue:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3713
                xLated := out := map at:el.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3714
            ] ifFalse:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3715
                out := el.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3716
            ].
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3717
        ].
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3718
        out notNil ifTrue:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3719
            (squashDuplicates and:[prevXlated notNil and:[prevXlated = xLated]]) ifTrue:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3720
                "/ ignore
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3721
            ] ifFalse:[
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3722
                outStream nextPut:out.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3723
            ].
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3724
            prevXlated := out.
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3725
        ].
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3726
    ].
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3727
    ^ outStream contents
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3728
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3729
    "
11875
79f71cb2270b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11870
diff changeset
  3730
     'abcdefghijkl1234567890' copyTransliterating:'b-g' to:'B-G'    
11844
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3731
     'abcdefghij-kl1234567890' copyTransliterating:'b\-g' to:'B+G'               
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3732
     'abcdefghijkl1234567890' copyTransliterating:'69' to:'96'      
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3733
     'abcdefghijkl1234567890' copyTransliterating:'a' to:'b'        
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3734
     'abcdefghijkl1234567890' copyTransliterating:'aeiou' to:'AEIOU'  
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3735
     'abcdefghijkl1234567890' copyTransliterating:'0-9' to:'QERTYUIOPX'  
11875
79f71cb2270b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11870
diff changeset
  3736
     'abcdefghijkl1234567890' copyTransliterating:'a-z' to:'b-za'  
79f71cb2270b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11870
diff changeset
  3737
     'abcdefghijkl1234567890' copyTransliterating:'a-z' to:'c-zab'  
79f71cb2270b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11870
diff changeset
  3738
     'abcdefghijkl1234567890' copyTransliterating:'a-z' to:'z-a'  
11844
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3739
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3740
     'abcdefghijkl1234567890' copyTransliterating:'0-9' to:'A'
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3741
                              complement:false squashDuplicates:false
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3742
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3743
     'abcdefghijkl1234567890' copyTransliterating:'0-9' to:'A'
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3744
                              complement:false squashDuplicates:true
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3745
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3746
     'abcdefghijkl1234567890' copyTransliterating:'0-9' to:'*'
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3747
                              complement:false squashDuplicates:false
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3748
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3749
     'abcdefghijkl1234567890' copyTransliterating:'0-9' to:'*'
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3750
                              complement:true squashDuplicates:false
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3751
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3752
     'abcdefghijkl1234567890' copyTransliterating:'a-zA-Z' to:' '
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3753
                              complement:true squashDuplicates:false
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3754
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3755
     'abcdefghijkl1234567890' copyTransliterating:'a-zA-Z' to:' '
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3756
                              complement:false squashDuplicates:false
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3757
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3758
     - delete all a-zA-Z
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3759
     'abcdefghijkl1234567890abcdefghijkl' copyTransliterating:'a-zA-Z' to:''
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3760
                              complement:false squashDuplicates:false            
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3761
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3762
     - delete all except a-zA-Z
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3763
     'abcdefghijkl1234567890abcdefghijkl' copyTransliterating:'a-zA-Z' to:''
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3764
                              complement:true squashDuplicates:false  
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3765
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3766
     - squash multiple spaces
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3767
     'abcd   efghij kl112234  5678999 0abbb cccc deeeef ghijkl' copyTransliterating:' ' to:' '
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3768
                              complement:false squashDuplicates:true         
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3769
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3770
     - squash multiple digits
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3771
     'abcd   efghij kl112234  5678999 0abbb cccc deeeef ghijkl' copyTransliterating:'0-9' to:'0-9'
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3772
                              complement:false squashDuplicates:true         
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3773
    "
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3774
!
21d8e1d6e7cf copyTransliterating:
Claus Gittinger <cg@exept.de>
parents: 11841
diff changeset
  3775
13697
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3776
copyUpThrough:element
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3777
    "return a new collection consisting of the receiver elements
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3778
     up-to (and including) the first occurrence of element;
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3779
     or to the end, if element is not included"
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3780
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3781
    |idx|
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3782
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3783
    idx := self indexOf:element.
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3784
    idx == 0 ifTrue:[^ self copy].    "question: is this ok?"
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3785
    ^ self copyFrom:1 to:idx
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3786
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3787
    "
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3788
     #($a $b $c $d $e $f $g) copyUpThrough:$d
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3789
     '1234567890' copyUpThrough:$5
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3790
     '1234567890' copyUpThrough:$a
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3791
     '1234567890' copyUpThrough:$1
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3792
     '123456789' copyUpThrough:$0
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3793
    "
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3794
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3795
    "Created: / 14-09-2011 / 16:28:16 / cg"
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3796
!
6e9de7dc94bc added: #copyUpThrough:
Claus Gittinger <cg@exept.de>
parents: 13469
diff changeset
  3797
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3798
copyUpTo:element
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3799
    "return a new collection consisting of the receiver elements
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3800
     up-to (but excluding) the first occurrence of element;
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3801
     or to the end, if element is not included"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3802
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3803
    |idx|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3804
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3805
    idx := self indexOf:element.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3806
    idx == 0 ifTrue:[^ self copy].    "question: is this ok?"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3807
    idx == 1 ifTrue:[^ self copyEmpty].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3808
    ^ self copyFrom:1 to:(idx-1)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3809
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3810
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3811
     #($a $b $c $d $e $f $g) copyUpTo:$d
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3812
     '1234567890' copyUpTo:$5
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3813
     '1234567890' copyUpTo:$a
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3814
     '1234567890' copyUpTo:$1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3815
     '123456789' copyUpTo:$0
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3816
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3817
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3818
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3819
copyWith:newElement
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3820
    "return a new collection containing the receiver's elements
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3821
     and the single new element, newElement.
233
98f588af201a comments
claus
parents: 202
diff changeset
  3822
     This is different from concatentation, which expects another collection
98f588af201a comments
claus
parents: 202
diff changeset
  3823
     as argument, but equivalent to copy-and-addLast."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3824
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3825
    |newCollection mySize newSize|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3826
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3827
    mySize := self size.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3828
    newSize := mySize + 1.
252
  3829
    newCollection := self copyEmptyAndGrow:newSize.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3830
    newCollection replaceFrom:1 to:mySize with:self startingAt:1.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3831
    newCollection at:newSize put:newElement.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3832
    ^newCollection
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  3833
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3834
    "
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3835
     #(1 2 3 4 5) copyWith:$a
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3836
     'abcdefg' copyWith:$h
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3837
     'abcdefg' copyWith:'123'   -- will fail: string cannot be stored into string
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3838
     'abcdefg' copyWith:1       -- will fail: integer cannot be stored into string
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3839
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3840
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3841
11855
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3842
copyWithFirst:newFirstElement
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3843
    "return a new collection containing the receiver's elements
11855
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3844
     and the single new element, newElement up front.
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3845
     This is different from concatentation, which expects two collections
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3846
     as argument, but equivalent to copy-and-addFirst."
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3847
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3848
    |newCollection mySize newSize|
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3849
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3850
    mySize := self size.
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3851
    newSize := mySize + 1.
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3852
    newCollection := self copyEmptyAndGrow:newSize.
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3853
    newCollection replaceFrom:2 to:mySize+1 with:self startingAt:1.
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3854
    newCollection at:1 put:newFirstElement.
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3855
    ^newCollection
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3856
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3857
    "
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3858
     #(1 2 3 4 5) copyWithFirst:$a  
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3859
     'abcdefg' copyWithFirst:$h
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3860
     'abcdefg' copyWithFirst:'123'   -- will fail: string cannot be stored into string
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3861
     'abcdefg' copyWithFirst:1       -- will fail: integer cannot be stored into string
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3862
    "
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3863
!
8e32bf8bc50e +copyWithFirst:
Claus Gittinger <cg@exept.de>
parents: 11844
diff changeset
  3864
61
claus
parents: 44
diff changeset
  3865
copyWithout:elementToSkip
claus
parents: 44
diff changeset
  3866
    "return a new collection consisting of a copy of the receiver, with
claus
parents: 44
diff changeset
  3867
     ALL elements equal to elementToSkip are left out.
claus
parents: 44
diff changeset
  3868
     No error is reported, if elementToSkip is not in the collection."
claus
parents: 44
diff changeset
  3869
293
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  3870
    |n         "{ Class: SmallInteger }"
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  3871
     sz        "{ Class: SmallInteger }"
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  3872
     srcIndex  "{ Class: SmallInteger }"
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  3873
     dstIndex  "{ Class: SmallInteger }"
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  3874
     skipIndex "{ Class: SmallInteger }"
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  3875
     copy l|
61
claus
parents: 44
diff changeset
  3876
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3877
    "the code below may look like overkill,
61
claus
parents: 44
diff changeset
  3878
     however, for big collections its better to move data
claus
parents: 44
diff changeset
  3879
     around in big chunks"
claus
parents: 44
diff changeset
  3880
claus
parents: 44
diff changeset
  3881
    n := self occurrencesOf:elementToSkip.
claus
parents: 44
diff changeset
  3882
    n == 0 ifTrue:[^ self copy].
claus
parents: 44
diff changeset
  3883
claus
parents: 44
diff changeset
  3884
    sz := self size.
252
  3885
    copy := self copyEmptyAndGrow:(sz - n).
61
claus
parents: 44
diff changeset
  3886
claus
parents: 44
diff changeset
  3887
    srcIndex := 1.
claus
parents: 44
diff changeset
  3888
    dstIndex := 1.
claus
parents: 44
diff changeset
  3889
claus
parents: 44
diff changeset
  3890
    n timesRepeat:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3891
	skipIndex := self indexOf:elementToSkip startingAt:srcIndex.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3892
	l := skipIndex - srcIndex.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3893
	l ~~ 0 ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3894
	    copy replaceFrom:dstIndex to:(dstIndex + l - 1)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3895
			with:self startingAt:srcIndex.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3896
	    dstIndex := dstIndex + l
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3897
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3898
	srcIndex := skipIndex + 1
61
claus
parents: 44
diff changeset
  3899
    ].
claus
parents: 44
diff changeset
  3900
    l := sz - srcIndex.
claus
parents: 44
diff changeset
  3901
    copy replaceFrom:dstIndex to:(dstIndex + l)
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3902
		with:self startingAt:srcIndex.
61
claus
parents: 44
diff changeset
  3903
    ^ copy
claus
parents: 44
diff changeset
  3904
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3905
    "
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3906
     #($a $b $c $d $e $f $g) copyWithout:$d
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3907
     #($a $b $c $d $e $f $g) copyWithout:$a
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3908
     #($a $b $c $d $e $f $g) copyWithout:$g
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3909
     'abcdefghi' copyWithout:$h
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3910
     'abcdefg' copyWithout:$h
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3911
     #($a $b $c $a $a $d $e $a $f $g) copyWithout:$a
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3912
     #($a $b $c $d $e $f $g) copyWithout:$x
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3913
     #(90 80 70 60 50) copyWithout:70
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3914
     #(90 80 70 80 60 45 80 50) copyWithout:80
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3915
    "
61
claus
parents: 44
diff changeset
  3916
!
claus
parents: 44
diff changeset
  3917
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3918
copyWithoutFirst:elementToSkip
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3919
    "return a new collection consisting of a copy of the receiver's elements
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3920
     without the first elementToSkip, if it was present.
5206
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3921
     No error is reported, if elementToSkip is not in the collection.
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  3922
     Do not confuse this with copyButFirst:"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3923
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3924
    |copy skipIndex sz|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3925
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3926
    skipIndex := self indexOf:elementToSkip startingAt:1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3927
    (skipIndex == 0) ifTrue:[^ self copy].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3928
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3929
    sz := self size - 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3930
    copy := self copyEmptyAndGrow:sz.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3931
    copy replaceFrom:1 to:(skipIndex - 1) with:self startingAt:1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3932
    copy replaceFrom:skipIndex to:sz with:self startingAt:(skipIndex + 1).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3933
    ^ copy
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3934
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3935
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3936
     #($a $b $c $d $e $f $g) copyWithoutFirst:$d
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3937
     #($a $b $c $d $e $f $g) copyWithoutFirst:$x
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3938
     #(90 80 70 60 50) copyWithoutFirst:70
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3939
     #(90 80 70 80 60 45 80 50) copyWithoutFirst:80
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3940
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3941
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3942
8673
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3943
copyWithoutIdentical:elementToSkip
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3944
    "return a new collection consisting of a copy of the receiver, with
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3945
     ALL elements identical to elementToSkip are left out.
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3946
     No error is reported, if elementToSkip is not in the collection."
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3947
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3948
    |n         "{ Class: SmallInteger }"
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3949
     sz        "{ Class: SmallInteger }"
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3950
     srcIndex  "{ Class: SmallInteger }"
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3951
     dstIndex  "{ Class: SmallInteger }"
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3952
     skipIndex "{ Class: SmallInteger }"
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3953
     copy l|
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3954
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3955
    "the code below may look like overkill,
8673
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3956
     however, for big collections its better to move data
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3957
     around in big chunks"
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3958
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3959
    n := self count:[:el | el == elementToSkip].
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3960
    n == 0 ifTrue:[^ self copy].
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3961
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3962
    sz := self size.
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3963
    copy := self copyEmptyAndGrow:(sz - n).
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3964
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3965
    srcIndex := 1.
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3966
    dstIndex := 1.
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3967
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3968
    n timesRepeat:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3969
	skipIndex := self identityIndexOf:elementToSkip startingAt:srcIndex.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3970
	l := skipIndex - srcIndex.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3971
	l ~~ 0 ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3972
	    copy replaceFrom:dstIndex to:(dstIndex + l - 1)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3973
			with:self startingAt:srcIndex.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3974
	    dstIndex := dstIndex + l
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3975
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3976
	srcIndex := skipIndex + 1
8673
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3977
    ].
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3978
    l := sz - srcIndex.
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3979
    copy replaceFrom:dstIndex to:(dstIndex + l)
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3980
		with:self startingAt:srcIndex.
8673
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3981
    ^ copy
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3982
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3983
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3984
     #(#a #b #c 'a' #e #f #g) copyWithoutIdentical:#a
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  3985
     #(#a #b #c 'a' #e #f #g) copyWithout:#a
8673
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3986
    "
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3987
!
adcf94cd5d84 +copyWithoutIdentical
Claus Gittinger <cg@exept.de>
parents: 8643
diff changeset
  3988
61
claus
parents: 44
diff changeset
  3989
copyWithoutIndex:omitIndex
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  3990
    "return a new collection consisting of receiver's elements
61
claus
parents: 44
diff changeset
  3991
     without the argument stored at omitIndex"
claus
parents: 44
diff changeset
  3992
claus
parents: 44
diff changeset
  3993
    |copy sz|
claus
parents: 44
diff changeset
  3994
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  3995
    sz := self size - 1.
252
  3996
    copy := self copyEmptyAndGrow:sz.
293
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  3997
    copy replaceFrom:1 to:(omitIndex - 1) with:self startingAt:1.
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  3998
    copy replaceFrom:omitIndex to:sz with:self startingAt:(omitIndex + 1).
61
claus
parents: 44
diff changeset
  3999
    ^ copy
claus
parents: 44
diff changeset
  4000
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  4001
    "
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  4002
     #(1 2 3 4 5 6 7 8 9 0) copyWithoutIndex:3
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  4003
     'abcdefghijkl' copyWithoutIndex:5
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  4004
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4005
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4006
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  4007
copyWithoutLast:count
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4008
    "return a new collection consisting of the receiver's elements
5206
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  4009
     except the last count elements.
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  4010
     That is the same as copyButLast: and badly named (for compatibility),
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  4011
     because the name may confuse users with the copyWithoutFirst: functionality.
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  4012
     Please use copyButLast:."
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  4013
9250
e5e67bcbbb17 mark methods as obsolete
Stefan Vogel <sv@exept.de>
parents: 9234
diff changeset
  4014
    <resource:#obsolete>
e5e67bcbbb17 mark methods as obsolete
Stefan Vogel <sv@exept.de>
parents: 9234
diff changeset
  4015
5206
c0ebfca02f7c added #copyButFirst: and #copyButLast:
Claus Gittinger <cg@exept.de>
parents: 5188
diff changeset
  4016
    ^ self copyTo:(self size - count)
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  4017
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  4018
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4019
     #($a $b $c $d $e $f $g) copyWithoutLast:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4020
     '1234567890' copyWithoutLast:4
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  4021
    "
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4022
!
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4023
12750
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4024
repeatedConcatenation:nTimes
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4025
    "return a new collection consisting of nTimes the concatenation of the receiver"
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4026
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4027
    |newColl idx|
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4028
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4029
    newColl := self species new:(self size * nTimes).
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4030
    idx := 1.
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4031
    nTimes timesRepeat:[
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4032
        newColl replaceFrom:idx with:self startingAt:1.
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4033
        idx := idx + self size.
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4034
    ].
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4035
    ^ newColl
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4036
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4037
    "
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4038
     'hello' repeatedConcatenation:5
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4039
     #[1 2 3] repeatedConcatenation:3
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4040
     #(1 2 3) repeatedConcatenation:1
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4041
    "
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4042
!
a2086ea63bfb added: #repeatedConcatenation:
Claus Gittinger <cg@exept.de>
parents: 12726
diff changeset
  4043
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4044
restAfter:anElement
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4045
    "return a new collection consisting of the receiver's elements after
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4046
     (but excluding) anElement.
8366
0a3e8db69147 +restAfter:
Claus Gittinger <cg@exept.de>
parents: 8311
diff changeset
  4047
     If anElement is not in the receiver, the returned collection
0a3e8db69147 +restAfter:
Claus Gittinger <cg@exept.de>
parents: 8311
diff changeset
  4048
     will be empty.
0a3e8db69147 +restAfter:
Claus Gittinger <cg@exept.de>
parents: 8311
diff changeset
  4049
     See also #upTo:."
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4050
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4051
    |pos|
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4052
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4053
    pos := self indexOf:anElement.
8366
0a3e8db69147 +restAfter:
Claus Gittinger <cg@exept.de>
parents: 8311
diff changeset
  4054
    pos == 0 ifTrue:[^ self copyEmpty].
0a3e8db69147 +restAfter:
Claus Gittinger <cg@exept.de>
parents: 8311
diff changeset
  4055
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4056
    ^ self copyFrom:(pos + 1)
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4057
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4058
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4059
     #(1 2 3 4 5 6 7 8 9) upTo:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4060
     #(1 2 3 4 5 6 7 8 9) restAfter:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4061
     'hello world' upTo:Character space
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4062
     'hello world' restAfter:Character space
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4063
     '1234.5678' upTo:$.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4064
     '1234.5678' restAfter:$.
8366
0a3e8db69147 +restAfter:
Claus Gittinger <cg@exept.de>
parents: 8311
diff changeset
  4065
    "
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4066
!
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4067
12187
fm
parents: 12051
diff changeset
  4068
trimForWhich:aCheckBlock
fm
parents: 12051
diff changeset
  4069
    "return a copy of myself without leading and trailing elements for which aCheckBlock returns true.
fm
parents: 12051
diff changeset
  4070
     Normally, this is mostly used with string receivers."
fm
parents: 12051
diff changeset
  4071
fm
parents: 12051
diff changeset
  4072
    |startIndex "{ Class: SmallInteger }"
fm
parents: 12051
diff changeset
  4073
     endIndex   "{ Class: SmallInteger }"
fm
parents: 12051
diff changeset
  4074
     sz|
fm
parents: 12051
diff changeset
  4075
fm
parents: 12051
diff changeset
  4076
    sz := self size.
fm
parents: 12051
diff changeset
  4077
    startIndex := 1.
fm
parents: 12051
diff changeset
  4078
    endIndex := sz.
fm
parents: 12051
diff changeset
  4079
12320
a6eafd9e4d12 changed: #trimForWhich:
Claus Gittinger <cg@exept.de>
parents: 12290
diff changeset
  4080
    [(startIndex <= endIndex) and:[aCheckBlock value:(self at:startIndex)]] whileTrue:[
12187
fm
parents: 12051
diff changeset
  4081
        startIndex := startIndex + 1
fm
parents: 12051
diff changeset
  4082
    ].
fm
parents: 12051
diff changeset
  4083
    [(endIndex > 1) and:[aCheckBlock value:(self at:endIndex)]] whileTrue:[
fm
parents: 12051
diff changeset
  4084
        endIndex := endIndex - 1
fm
parents: 12051
diff changeset
  4085
    ].
fm
parents: 12051
diff changeset
  4086
    startIndex > endIndex ifTrue:[
fm
parents: 12051
diff changeset
  4087
        ^ self class new
fm
parents: 12051
diff changeset
  4088
    ].
fm
parents: 12051
diff changeset
  4089
    ((startIndex == 1) and:[endIndex == sz]) ifTrue:[
fm
parents: 12051
diff changeset
  4090
        ^ self
fm
parents: 12051
diff changeset
  4091
    ].
fm
parents: 12051
diff changeset
  4092
    ^ self copyFrom:startIndex to:endIndex
fm
parents: 12051
diff changeset
  4093
fm
parents: 12051
diff changeset
  4094
    "
12320
a6eafd9e4d12 changed: #trimForWhich:
Claus Gittinger <cg@exept.de>
parents: 12290
diff changeset
  4095
     '    foo    ' trimForWhich:[:ch | ch isSeparator]  
a6eafd9e4d12 changed: #trimForWhich:
Claus Gittinger <cg@exept.de>
parents: 12290
diff changeset
  4096
     '           ' trimForWhich:[:ch | ch isSeparator]  
12187
fm
parents: 12051
diff changeset
  4097
     #(0 0 0 1 2 3 0 0 0) trimForWhich:[:e | e = 0]
fm
parents: 12051
diff changeset
  4098
    "
fm
parents: 12051
diff changeset
  4099
!
fm
parents: 12051
diff changeset
  4100
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4101
upTo:anElement
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4102
    "return a new collection consisting of the receiver's elements upTo
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4103
     (but excluding) anElement.
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4104
     If anElement is not in the receiver, the returned collection
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4105
     will consist of all elements of the receiver.
9307
94ed275778b5 typo in comment
Stefan Vogel <sv@exept.de>
parents: 9301
diff changeset
  4106
     See also #restAfter:  , #copyFrom:index."
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4107
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4108
    |pos|
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4109
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4110
    pos := self indexOf:anElement.
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4111
    pos == 0 ifTrue:[^ self copy].
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4112
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4113
    ^ self copyFrom:1 to:(pos - 1)
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4114
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4115
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4116
     #(1 2 3 4 5 6 7 8 9) upTo:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4117
     'hello world' upTo:Character space
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4118
     #(9 8 7 6 5 4 3 2 1) asSortedCollection upTo:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4119
     '1234.5678' upTo:$.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4120
     '1234'      upTo:$.
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4121
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4122
     raises an error:
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4123
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4124
     (Dictionary new
9307
94ed275778b5 typo in comment
Stefan Vogel <sv@exept.de>
parents: 9301
diff changeset
  4125
        at:#foo put:'foo';
94ed275778b5 typo in comment
Stefan Vogel <sv@exept.de>
parents: 9301
diff changeset
  4126
        at:#bar put:'bar';
94ed275778b5 typo in comment
Stefan Vogel <sv@exept.de>
parents: 9301
diff changeset
  4127
        at:#baz put:'baz';
94ed275778b5 typo in comment
Stefan Vogel <sv@exept.de>
parents: 9301
diff changeset
  4128
        yourself) upTo:#bar
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4129
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4130
    "
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4131
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4132
    "Modified: 11.5.1996 / 11:14:05 / cg"
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4133
!
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4134
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4135
upTo:anElement count:count
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4136
    "return a new collection consisting of the receiver's elements upTo
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4137
     (but excluding) count found anElements, i.e. the first found count-1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4138
     elements are included in the returned collection; if count < 0 the
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4139
     procedure is done from the end of the collection backwards.
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4140
     If anElement is not in the receiver, the returned collection
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4141
     will consist of all elements of the receiver"
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4142
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4143
    |startPos endPos pos found|
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4144
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4145
    (count == 0 or: [count == 1]) ifTrue:[
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4146
        ^ self upTo:anElement
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4147
    ].
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4148
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4149
    startPos := 1.
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4150
    endPos   := self size.
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4151
    found    := 0.
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4152
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4153
    count > 1 ifTrue:[
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4154
        pos := 0.
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4155
        [pos < self size and: [found < count]]
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4156
            whileTrue: [pos := pos + 1. (self at: pos) == anElement ifTrue: [found := found + 1]].
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4157
        found == count ifTrue:[
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4158
            endPos   := pos - 1
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4159
        ]
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4160
    ].
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4161
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4162
    count < 0 ifTrue:[
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4163
        pos := self size + 1.
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4164
        [pos > 1 and: [found < count abs]]
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4165
            whileTrue: [pos := pos - 1. (self at: pos) == anElement ifTrue: [found := found + 1]].
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4166
        found == count abs ifTrue:[
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4167
            startPos := pos + 1
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4168
        ]
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4169
    ].
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4170
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4171
    ^ self copyFrom: startPos to: endPos
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4172
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4173
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4174
     'hello1_hello2_hello3' upTo:$_ count:  2     returns first two 'hellos'
5231
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4175
     'hello1_hello2_hello3' upTo:$_ count: -1     returns last 'hello'
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4176
     'hello1_hello2_hello3' upTo:$_ count: 0      returns first 'hello1'
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4177
     'hello1_hello2_hello3' upTo:$_ count: 1      returns first 'hello1'
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4178
     'hello1_hello2_hello3' upTo:$_               same; returns first 'hello1'
df6dd43af1c5 comments;
Claus Gittinger <cg@exept.de>
parents: 5220
diff changeset
  4179
    "
5563
e65efbf51900 added #upToAny:
Claus Gittinger <cg@exept.de>
parents: 5559
diff changeset
  4180
!
e65efbf51900 added #upToAny:
Claus Gittinger <cg@exept.de>
parents: 5559
diff changeset
  4181
e65efbf51900 added #upToAny:
Claus Gittinger <cg@exept.de>
parents: 5559
diff changeset
  4182
upToAny:aCollectionOfObjects
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4183
    "return a new collection consisting of the receiver's elements upTo
5563
e65efbf51900 added #upToAny:
Claus Gittinger <cg@exept.de>
parents: 5559
diff changeset
  4184
     (but excluding) any in aCollectionOfObjects.
e65efbf51900 added #upToAny:
Claus Gittinger <cg@exept.de>
parents: 5559
diff changeset
  4185
     If none of aCollectionOfObjects is found in the receiver, the returned collection
e65efbf51900 added #upToAny:
Claus Gittinger <cg@exept.de>
parents: 5559
diff changeset
  4186
     will consist of all elements of the receiver.
e65efbf51900 added #upToAny:
Claus Gittinger <cg@exept.de>
parents: 5559
diff changeset
  4187
     See also #upTo:"
e65efbf51900 added #upToAny:
Claus Gittinger <cg@exept.de>
parents: 5559
diff changeset
  4188
e65efbf51900 added #upToAny:
Claus Gittinger <cg@exept.de>
parents: 5559
diff changeset
  4189
    |pos|
e65efbf51900 added #upToAny:
Claus Gittinger <cg@exept.de>
parents: 5559
diff changeset
  4190
e65efbf51900 added #upToAny:
Claus Gittinger <cg@exept.de>
parents: 5559
diff changeset
  4191
    pos := self indexOfAny:aCollectionOfObjects.
e65efbf51900 added #upToAny:
Claus Gittinger <cg@exept.de>
parents: 5559
diff changeset
  4192
    pos == 0 ifTrue:[^ self copy].
e65efbf51900 added #upToAny:
Claus Gittinger <cg@exept.de>
parents: 5559
diff changeset
  4193
e65efbf51900 added #upToAny:
Claus Gittinger <cg@exept.de>
parents: 5559
diff changeset
  4194
    ^ self copyFrom:1 to:(pos - 1)
e65efbf51900 added #upToAny:
Claus Gittinger <cg@exept.de>
parents: 5559
diff changeset
  4195
e65efbf51900 added #upToAny:
Claus Gittinger <cg@exept.de>
parents: 5559
diff changeset
  4196
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4197
     'hello world' upToAny:#($/ $:)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4198
     'hello:world' upToAny:#($/ $:)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4199
     'hello/world' upToAny:#($/ $:)
5563
e65efbf51900 added #upToAny:
Claus Gittinger <cg@exept.de>
parents: 5559
diff changeset
  4200
    "
12187
fm
parents: 12051
diff changeset
  4201
!
fm
parents: 12051
diff changeset
  4202
fm
parents: 12051
diff changeset
  4203
withoutLeadingForWhich:aCheckBlock
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  4204
    "return a copy of myself without leading elements for which aCheckBlock returns true.
12187
fm
parents: 12051
diff changeset
  4205
     Returns an empty collection, if the receiver consist only of matching elements.
fm
parents: 12051
diff changeset
  4206
     Normally, this is mostly used with string receivers."
fm
parents: 12051
diff changeset
  4207
fm
parents: 12051
diff changeset
  4208
    |index sz|
fm
parents: 12051
diff changeset
  4209
fm
parents: 12051
diff changeset
  4210
    sz := self size.
fm
parents: 12051
diff changeset
  4211
    index := 1.
fm
parents: 12051
diff changeset
  4212
    [index <= sz] whileTrue:[
fm
parents: 12051
diff changeset
  4213
        (aCheckBlock value:(self at:index)) ifFalse:[
fm
parents: 12051
diff changeset
  4214
            index == 1 ifTrue:[^ self].
fm
parents: 12051
diff changeset
  4215
            ^ self copyFrom:index
fm
parents: 12051
diff changeset
  4216
        ].
fm
parents: 12051
diff changeset
  4217
        index := index + 1
fm
parents: 12051
diff changeset
  4218
    ].
fm
parents: 12051
diff changeset
  4219
    ^ self class new
fm
parents: 12051
diff changeset
  4220
fm
parents: 12051
diff changeset
  4221
    "
fm
parents: 12051
diff changeset
  4222
     '****foo****' withoutLeadingForWhich:[:ch | ch isLetter not]     
fm
parents: 12051
diff changeset
  4223
     #( 0 0 0 1 2 3 4 0 0 0) withoutLeadingForWhich:[:e | e = 0]     
fm
parents: 12051
diff changeset
  4224
    "
fm
parents: 12051
diff changeset
  4225
!
fm
parents: 12051
diff changeset
  4226
fm
parents: 12051
diff changeset
  4227
withoutTrailingForWhich:aCheckBlock
fm
parents: 12051
diff changeset
  4228
    "return a copy of myself without trailing characters for which aCheckBlock returns true.
fm
parents: 12051
diff changeset
  4229
     Returns an empty collection, if the receiver consist only of matching chars."
fm
parents: 12051
diff changeset
  4230
fm
parents: 12051
diff changeset
  4231
    |index sz|
fm
parents: 12051
diff changeset
  4232
fm
parents: 12051
diff changeset
  4233
    index := sz := self size.
fm
parents: 12051
diff changeset
  4234
    [index ~~ 0] whileTrue:[
fm
parents: 12051
diff changeset
  4235
        (aCheckBlock value:(self at:index)) ifFalse:[
fm
parents: 12051
diff changeset
  4236
            index == sz ifTrue:[^ self].
fm
parents: 12051
diff changeset
  4237
            ^ self copyTo:index
fm
parents: 12051
diff changeset
  4238
        ].
fm
parents: 12051
diff changeset
  4239
        index := index - 1
fm
parents: 12051
diff changeset
  4240
    ].
fm
parents: 12051
diff changeset
  4241
    ^ self class new
fm
parents: 12051
diff changeset
  4242
fm
parents: 12051
diff changeset
  4243
    "
fm
parents: 12051
diff changeset
  4244
     '    foo....' withoutTrailingForWhich:[:ch | ch isLetter not]. 
fm
parents: 12051
diff changeset
  4245
     #( 0 0 0 1 2 3 4 0 0 0) withoutTrailingForWhich:[:e | e = 0]     
fm
parents: 12051
diff changeset
  4246
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4247
! !
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4248
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4249
!SequenceableCollection methodsFor:'enumerating'!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4250
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4251
collect:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4252
    "evaluate the argument, aBlock for every element in the collection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4253
     and return a collection of the results"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4254
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4255
    |newCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4256
     sz  "{ Class:SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4257
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4258
    sz := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4259
    newCollection := self copyEmptyAndGrow:sz.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4260
    1 to:sz do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4261
	newCollection at:index put:(aBlock value:(self at:index)).
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4262
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4263
    ^ newCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4264
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4265
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4266
     #(one two three four five six) collect:[:element | element asUppercase]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4267
     #(1 2 3 4 5 6 7 8 9) collect:[:element | element factorial]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4268
     (1 to:9) collect:[:element | element * element]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4269
    "
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  4270
!
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  4271
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4272
do:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4273
    "evaluate the argument, aBlock for every element in the collection."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4274
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4275
    |stop "{ Class:SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4276
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4277
    stop := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4278
    1 to:stop do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4279
	aBlock value:(self at:index).
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4280
    ]
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4281
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4282
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1421
diff changeset
  4283
     #(one two three four five six) do:[:element | Transcript showCR:element]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4284
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4285
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4286
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4287
do:aBlock separatedBy:sepBlock
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4288
    "evaluate the argument, aBlock for every element in the collection.
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4289
     Between each element (i.e. not before the first element and not after the
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4290
     last element), evaluate sepBlock.
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4291
     This supports printing of collections with elements separated by some
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4292
     string."
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4293
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4294
    |stop "{ Class:SmallInteger }"|
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4295
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4296
    stop := self size.
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4297
    stop < 1 ifTrue:[^ self].
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4298
    aBlock value:(self at:1).
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4299
    2 to:stop do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4300
	sepBlock value.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4301
	aBlock value:(self at:index)
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4302
    ].
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4303
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4304
    "
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4305
     #(one two three four five six)
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4306
	do:[:each | Transcript show:each]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4307
	separatedBy:[Transcript show:' , ']
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4308
    "
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  4309
!
3003
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  4310
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3037
diff changeset
  4311
doWithIndex:aBlock
14029
9fdd8832d871 added: #from:to:doWithIndex:
Claus Gittinger <cg@exept.de>
parents: 14010
diff changeset
  4312
    "Squeak/V'Age compatibility; 
9fdd8832d871 added: #from:to:doWithIndex:
Claus Gittinger <cg@exept.de>
parents: 14010
diff changeset
  4313
     like keysAndValuesDo:, but passes the index as second argument."
9fdd8832d871 added: #from:to:doWithIndex:
Claus Gittinger <cg@exept.de>
parents: 14010
diff changeset
  4314
9fdd8832d871 added: #from:to:doWithIndex:
Claus Gittinger <cg@exept.de>
parents: 14010
diff changeset
  4315
    self keysAndValuesDo:[:index :el | aBlock value:el value:index].
9fdd8832d871 added: #from:to:doWithIndex:
Claus Gittinger <cg@exept.de>
parents: 14010
diff changeset
  4316
9fdd8832d871 added: #from:to:doWithIndex:
Claus Gittinger <cg@exept.de>
parents: 14010
diff changeset
  4317
    "Created: / 17-10-1997 / 12:33:10 / cg"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3037
diff changeset
  4318
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3037
diff changeset
  4319
5220
66ac0778fe08 added #from:collect: - for convenience
Claus Gittinger <cg@exept.de>
parents: 5206
diff changeset
  4320
from:start collect:aBlock
66ac0778fe08 added #from:collect: - for convenience
Claus Gittinger <cg@exept.de>
parents: 5206
diff changeset
  4321
    "evaluate the argument, aBlock for the elements starting at start
66ac0778fe08 added #from:collect: - for convenience
Claus Gittinger <cg@exept.de>
parents: 5206
diff changeset
  4322
     to the end and return a collection of the results"
66ac0778fe08 added #from:collect: - for convenience
Claus Gittinger <cg@exept.de>
parents: 5206
diff changeset
  4323
66ac0778fe08 added #from:collect: - for convenience
Claus Gittinger <cg@exept.de>
parents: 5206
diff changeset
  4324
    ^ self from:start to:self size collect:aBlock
66ac0778fe08 added #from:collect: - for convenience
Claus Gittinger <cg@exept.de>
parents: 5206
diff changeset
  4325
66ac0778fe08 added #from:collect: - for convenience
Claus Gittinger <cg@exept.de>
parents: 5206
diff changeset
  4326
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4327
     #(one two three four five six)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4328
	from:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4329
	collect:[:element | element asUppercase]
5220
66ac0778fe08 added #from:collect: - for convenience
Claus Gittinger <cg@exept.de>
parents: 5206
diff changeset
  4330
    "
66ac0778fe08 added #from:collect: - for convenience
Claus Gittinger <cg@exept.de>
parents: 5206
diff changeset
  4331
66ac0778fe08 added #from:collect: - for convenience
Claus Gittinger <cg@exept.de>
parents: 5206
diff changeset
  4332
    "Created: / 30.1.2000 / 01:02:28 / cg"
66ac0778fe08 added #from:collect: - for convenience
Claus Gittinger <cg@exept.de>
parents: 5206
diff changeset
  4333
!
66ac0778fe08 added #from:collect: - for convenience
Claus Gittinger <cg@exept.de>
parents: 5206
diff changeset
  4334
14145
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4335
from:start conform:aOneArgBlock
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4336
    "return true, if the elements starting at the start-index conform to some condition.
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4337
     I.e. return false, if aBlock returns false for any of those elements;
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4338
     true otherwise."
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4339
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4340
    self from:start to:(self size) do:[:element | 
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4341
        (aOneArgBlock value:element) ifFalse:[^ false]
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4342
    ].
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4343
    ^ true
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4344
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4345
    "Created: / 25-05-2012 / 14:02:13 / cg"
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4346
!
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4347
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4348
from:startIndex do:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4349
    "evaluate the argument, aBlock for the elements starting with the
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4350
     element at startIndex to the end."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4351
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4352
    ^ self from:startIndex to:self size do:aBlock
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4353
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  4354
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4355
     #(one two three four five six)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4356
	from:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4357
	do:[:element | Transcript showCR:element]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4358
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4359
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4360
7490
bdcaaf5047d6 +from:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 7337
diff changeset
  4361
from:startIndex keysAndValuesDo:aBlock
bdcaaf5047d6 +from:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 7337
diff changeset
  4362
    "evaluate the argument, aBlock for the elements and indices starting with the
bdcaaf5047d6 +from:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 7337
diff changeset
  4363
     element at startIndex to the end."
bdcaaf5047d6 +from:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 7337
diff changeset
  4364
bdcaaf5047d6 +from:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 7337
diff changeset
  4365
    ^ self from:startIndex to:self size keysAndValuesDo:aBlock
bdcaaf5047d6 +from:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 7337
diff changeset
  4366
bdcaaf5047d6 +from:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 7337
diff changeset
  4367
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4368
     #(one two three four five six)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4369
	from:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4370
	keysAndValuesDo:[:element :idx | Transcript showCR:(idx -> element) ]
7490
bdcaaf5047d6 +from:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 7337
diff changeset
  4371
    "
bdcaaf5047d6 +from:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 7337
diff changeset
  4372
!
bdcaaf5047d6 +from:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 7337
diff changeset
  4373
7337
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4374
from:index1 to:index2 by:stepArg do:aBlock
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4375
    "evaluate the argument, aBlock for the elements with index index1 to index2 stepping by step in the collection"
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4376
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4377
    |start "{ Class:SmallInteger }"
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4378
     stop  "{ Class:SmallInteger }"
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4379
     step  "{ Class:SmallInteger }" |
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4380
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4381
    start := index1. "/ these assignments force type checking...
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4382
    stop := index2.  "/ and guarantee inline loop code below.
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4383
    step := stepArg.
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4384
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4385
    start to:stop by:step do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4386
	aBlock value:(self at:index).
7337
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4387
    ]
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4388
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4389
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4390
     #(one two three four five six seven eight nine ten)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4391
	from:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4392
	to:10
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4393
	by:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4394
	do:[:element | Transcript showCR:element]
7337
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4395
    "
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4396
!
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4397
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4398
from:start to:stop collect:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4399
    "evaluate the argument, aBlock for the elements indexed by start
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4400
     to stop in the collection and return a collection of the results"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4401
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4402
    |newCollection sz
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4403
     idx  "{ Class:SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4404
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4405
    sz := stop - start + 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4406
    newCollection := self copyEmptyAndGrow:sz.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4407
    idx := 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4408
    start to:stop do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4409
	newCollection at:idx put:(aBlock value:(self at:index)).
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4410
	idx := idx + 1
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4411
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4412
    ^ newCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4413
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4414
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4415
     #(one two three four five six)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4416
	from:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4417
	to:4
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4418
	collect:[:element | element asUppercase]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4419
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4420
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4421
14145
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4422
from:start to:end conform:aOneArgBlock
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4423
    "return true, if the elements from start-index to end-index conform to some condition.
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4424
     I.e. return false, if aBlock returns false for any of those elements;
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4425
     true otherwise."
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4426
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4427
    self from:start to:end do:[:element | 
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4428
        (aOneArgBlock value:element) ifFalse:[^ false]
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4429
    ].
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4430
    ^ true
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4431
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4432
    "
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4433
     #(1 2 3 4 5) from:2 to:2 conform:[:el | el even]     
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4434
     #(1 2 2 4 5) from:2 to:4 conform:[:el | el even]               
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4435
     #(1 2 2 4 5) from:2 to:5 conform:[:el | el even]               
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4436
     #(2 4 6 8 10) conform:[:el | el even]    
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4437
    "
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4438
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4439
    "Modified: / 13-09-2006 / 11:19:03 / cg"
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4440
    "Created: / 25-05-2012 / 14:00:50 / cg"
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4441
!
Claus Gittinger <cg@exept.de>
parents: 14144
diff changeset
  4442
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4443
from:index1 to:index2 do:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4444
    "evaluate the argument, aBlock for the elements with index index1 to
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4445
     index2 in the collection"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4446
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4447
    |start "{ Class:SmallInteger }"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4448
     stop  "{ Class:SmallInteger }" |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4449
7337
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4450
    start := index1. "/ these assignments force type checking...
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4451
    stop := index2.  "/ and guarantee inline loop code below.
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4452
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4453
    start to:stop do:[:index |
13384
fbe8205af682 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13383
diff changeset
  4454
        aBlock value:(self at:index).
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4455
    ]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4456
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4457
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4458
     #(one two three four five six)
13384
fbe8205af682 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13383
diff changeset
  4459
        from:3 to:5 do:[:element | Transcript showCR:element]
fbe8205af682 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13383
diff changeset
  4460
    "
fbe8205af682 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13383
diff changeset
  4461
fbe8205af682 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13383
diff changeset
  4462
    "Modified: / 02-06-2011 / 13:23:06 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4463
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4464
14029
9fdd8832d871 added: #from:to:doWithIndex:
Claus Gittinger <cg@exept.de>
parents: 14010
diff changeset
  4465
from:index1 to:index2 doWithIndex:aBlock
9fdd8832d871 added: #from:to:doWithIndex:
Claus Gittinger <cg@exept.de>
parents: 14010
diff changeset
  4466
    "Squeak/V'Age compatibility; 
9fdd8832d871 added: #from:to:doWithIndex:
Claus Gittinger <cg@exept.de>
parents: 14010
diff changeset
  4467
     like keysAndValuesDo:, but passes the index as second argument."
9fdd8832d871 added: #from:to:doWithIndex:
Claus Gittinger <cg@exept.de>
parents: 14010
diff changeset
  4468
9fdd8832d871 added: #from:to:doWithIndex:
Claus Gittinger <cg@exept.de>
parents: 14010
diff changeset
  4469
    self from:index1 to:index2 keysAndValuesDo:[:index :el | aBlock value:el value:index].
9fdd8832d871 added: #from:to:doWithIndex:
Claus Gittinger <cg@exept.de>
parents: 14010
diff changeset
  4470
9fdd8832d871 added: #from:to:doWithIndex:
Claus Gittinger <cg@exept.de>
parents: 14010
diff changeset
  4471
    "Created: / 29-02-2012 / 11:47:48 / cg"
9fdd8832d871 added: #from:to:doWithIndex:
Claus Gittinger <cg@exept.de>
parents: 14010
diff changeset
  4472
!
9fdd8832d871 added: #from:to:doWithIndex:
Claus Gittinger <cg@exept.de>
parents: 14010
diff changeset
  4473
6868
a18ee3ae0605 +from:to:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 6820
diff changeset
  4474
from:index1 to:index2 keysAndValuesDo:aBlock
a18ee3ae0605 +from:to:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 6820
diff changeset
  4475
    "evaluate the argument, aBlock for the elements with index index1 to
a18ee3ae0605 +from:to:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 6820
diff changeset
  4476
     index2 in the collection; pass both index and value."
a18ee3ae0605 +from:to:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 6820
diff changeset
  4477
a18ee3ae0605 +from:to:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 6820
diff changeset
  4478
    |start "{ Class:SmallInteger }"
a18ee3ae0605 +from:to:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 6820
diff changeset
  4479
     stop  "{ Class:SmallInteger }" |
a18ee3ae0605 +from:to:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 6820
diff changeset
  4480
7337
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4481
    start := index1. "/ these assignments force type checking...
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4482
    stop := index2.  "/ and guarantee inline loop code below.
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4483
6868
a18ee3ae0605 +from:to:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 6820
diff changeset
  4484
    start to:stop do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4485
	aBlock value:index value:(self at:index).
6868
a18ee3ae0605 +from:to:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 6820
diff changeset
  4486
    ]
a18ee3ae0605 +from:to:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 6820
diff changeset
  4487
a18ee3ae0605 +from:to:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 6820
diff changeset
  4488
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4489
     #(one two three four five six)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4490
	from:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4491
	to:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4492
	keysAndValuesDo:[:idx :element | Transcript show:idx; space; showCR:element]
6868
a18ee3ae0605 +from:to:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 6820
diff changeset
  4493
    "
a18ee3ae0605 +from:to:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 6820
diff changeset
  4494
!
a18ee3ae0605 +from:to:keysAndValuesDo:
Claus Gittinger <cg@exept.de>
parents: 6820
diff changeset
  4495
13383
fda414623fc6 added: #from:to:orEndDo:
Claus Gittinger <cg@exept.de>
parents: 13345
diff changeset
  4496
from:index1 to:index2 orEndDo:aBlock
fda414623fc6 added: #from:to:orEndDo:
Claus Gittinger <cg@exept.de>
parents: 13345
diff changeset
  4497
    "evaluate the argument, aBlock for the elements with index index1 to
fda414623fc6 added: #from:to:orEndDo:
Claus Gittinger <cg@exept.de>
parents: 13345
diff changeset
  4498
     index2 or the end (whichever comes first) in the collection"
fda414623fc6 added: #from:to:orEndDo:
Claus Gittinger <cg@exept.de>
parents: 13345
diff changeset
  4499
fda414623fc6 added: #from:to:orEndDo:
Claus Gittinger <cg@exept.de>
parents: 13345
diff changeset
  4500
    self from:index1 to:(index2 min:self size) do:aBlock
fda414623fc6 added: #from:to:orEndDo:
Claus Gittinger <cg@exept.de>
parents: 13345
diff changeset
  4501
fda414623fc6 added: #from:to:orEndDo:
Claus Gittinger <cg@exept.de>
parents: 13345
diff changeset
  4502
    "
fda414623fc6 added: #from:to:orEndDo:
Claus Gittinger <cg@exept.de>
parents: 13345
diff changeset
  4503
     #(one two three four five six)
13384
fbe8205af682 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13383
diff changeset
  4504
        from:3 to:10 orEndDo:[:element | Transcript showCR:element]
13383
fda414623fc6 added: #from:to:orEndDo:
Claus Gittinger <cg@exept.de>
parents: 13345
diff changeset
  4505
    "
fda414623fc6 added: #from:to:orEndDo:
Claus Gittinger <cg@exept.de>
parents: 13345
diff changeset
  4506
fda414623fc6 added: #from:to:orEndDo:
Claus Gittinger <cg@exept.de>
parents: 13345
diff changeset
  4507
    "Created: / 02-06-2011 / 13:21:32 / cg"
fda414623fc6 added: #from:to:orEndDo:
Claus Gittinger <cg@exept.de>
parents: 13345
diff changeset
  4508
!
fda414623fc6 added: #from:to:orEndDo:
Claus Gittinger <cg@exept.de>
parents: 13345
diff changeset
  4509
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4510
from:index1 to:index2 reverseDo:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4511
    "evaluate the argument, aBlock for the elements with index index1 to
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4512
     index2 in the collection. Step in reverse order"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4513
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4514
    |start "{ Class:SmallInteger }"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4515
     stop  "{ Class:SmallInteger }" |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4516
7337
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4517
    start := index1. "/ these assignments force type checking...
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4518
    stop := index2.  "/ and guarantee inline loop code below.
8f147e8b61be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7335
diff changeset
  4519
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4520
    stop to:start by:-1 do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4521
	aBlock value:(self at:index).
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4522
    ]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4523
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4524
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4525
     #(one two three four five six)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4526
	from:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4527
	to:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4528
	reverseDo:[:element | Transcript showCR:element]
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  4529
    "
61
claus
parents: 44
diff changeset
  4530
!
claus
parents: 44
diff changeset
  4531
6027
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4532
from:startIndex to:stopIndex select:aBlock
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4533
    "evaluate the argument, aBlock for the elements at startIndex..stopIndex
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4534
     and return a collection of those elements for which the block return true."
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4535
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4536
    |element newColl species needCopy
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4537
     n  "{ Class:SmallInteger }"|
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4538
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4539
    n := stopIndex - startIndex + 1.
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4540
    species := self species.
14109
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4541
    species growIsCheap ifTrue:[
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4542
        newColl := self copyEmpty:n.
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4543
        needCopy := false
14238
11237aa567c5 changed: #from:to:select:
Stefan Vogel <sv@exept.de>
parents: 14145
diff changeset
  4544
    ] ifFalse:[
14109
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4545
        newColl := OrderedCollection new:n.
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4546
        needCopy := true
6027
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4547
    ].
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4548
    startIndex to:stopIndex do:[:index |
14109
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4549
        element := self at:index.
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4550
        (aBlock value:element) ifTrue:[
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4551
            newColl add:element
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4552
        ].
6027
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4553
    ].
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4554
    needCopy ifTrue:[
14109
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4555
        newColl := (species withAll:newColl) postCopyFrom:self
6027
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4556
    ].
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4557
    ^ newColl
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4558
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4559
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4560
     #(faba one two three four five six)
14109
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4561
        from:2 to:5 select:[:element | element startsWith:'f']
6027
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4562
    "
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4563
!
2ef25097672f added #from:to:select:
Claus Gittinger <cg@exept.de>
parents: 5962
diff changeset
  4564
13897
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4565
from:startArg to:stopArg with:aSequenceableCollection doWithIndex:aThreeArgBlock
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4566
    "evaluate the argument, aBlock for successive elements from
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4567
     each the receiver and the argument, aSequenceableCollection.
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4568
     aBlock must be a three-argument block, which get elements from either collection and
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4569
     the index as arguments.
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4570
     The collection argument must implement access via a numeric key."
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4571
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4572
    |start  "{ Class: SmallInteger }" 
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4573
     stop  "{ Class: SmallInteger }" |
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4574
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4575
    start := startArg.
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4576
    stop := stopArg.
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4577
    start to:stop do:[:index |
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4578
        aThreeArgBlock 
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4579
            value:(self at:index) 
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4580
            value:(aSequenceableCollection at:index)
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4581
            value:index.
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4582
    ]
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4583
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4584
    "
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4585
     #(one two three four five six) 
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4586
        from:2 to:5
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4587
        with:(1 to:10)
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4588
        doWithIndex:[:el1 :el2 :idx| Transcript show:idx; space; show:el1; space; showCR:el2]
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4589
    "
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4590
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4591
    "Created: / 08-01-2012 / 17:18:34 / cg"
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4592
!
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4593
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4594
inGroupsOf:n collect:anNArgBlock
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4595
    "evaluate the argument, anNArgBlock for every group of n elements in the collection,
6554
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4596
     and collect the results.
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4597
     The block is called with n arguments for group of n consecutive elements in the receiver.
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4598
     An error will be reported, if the number of elements in the receiver
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4599
     is not a multiple of n."
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4600
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4601
    |stop "{ Class:SmallInteger }" newCollection dstIdx argVector rslt|
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4602
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4603
    stop := self size.
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4604
    newCollection := self copyEmptyAndGrow:stop // n.
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4605
    dstIdx := 1.
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4606
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4607
    "/ the reason for inlining the cases for 2/3 args is to avoid the temporary object creation, and to    
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4608
    "/ allow for the compiler (jitter) to generate better code for the block-call
6554
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4609
    n == 2 ifTrue:[
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4610
        1 to:stop by:n do:[:index |
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4611
            rslt := anNArgBlock value:(self at:index) value:(self at:index+1).
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4612
            newCollection at:dstIdx put:rslt.
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4613
            dstIdx := dstIdx + 1.
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4614
        ].
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4615
        ^ newCollection.
6554
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4616
    ].
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4617
    n == 3 ifTrue:[
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4618
        1 to:stop by:n do:[:index |
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4619
            rslt := anNArgBlock value:(self at:index) value:(self at:index+1) value:(self at:index+2).
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4620
            newCollection at:dstIdx put:rslt.
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4621
            dstIdx := dstIdx + 1.
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4622
        ].
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4623
        ^ newCollection.
6554
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4624
    ].
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4625
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4626
    argVector := Array new:n.
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4627
    1 to:stop by:n do:[:index |
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4628
        argVector replaceFrom:1 to:n with:self startingAt:index.
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4629
        rslt := anNArgBlock valueWithArguments:argVector.
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4630
        newCollection at:dstIdx put:rslt.
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4631
        dstIdx := dstIdx + 1.
6554
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4632
    ].
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4633
    ^ newCollection
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4634
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4635
    "for groups of 2, this is the same as:
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4636
     #(1 one 2 two 3 three 4 four 5 five 6 six)
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4637
         pairWiseCollect:[:num :sym | num->sym]
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4638
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4639
     #(1 one 2 two 3 three 4 four 5 five 6 six)
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4640
         inGroupsOf:2 collect:[:num :sym | num->sym]
6554
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4641
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4642
     #( 1 2 3 4 5    6 7 8 9 10   11 12 13 14 15   16 17 18 19 20 )
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4643
         inGroupsOf:5 collect:[:a :b :c :d :e | Array with:a with:b with:c with:d with:e]
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4644
    "
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4645
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4646
    "Modified: / 27-10-2006 / 10:07:02 / cg"
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4647
!
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4648
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4649
inGroupsOf:n do:anNArgBlock
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4650
    "evaluate the argument, anNArgBlock for every group of n elements in the collection.
6554
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4651
     The block is called with n arguments for group of n consecutive elements in the receiver.
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4652
     An error will be reported, if the number of elements in the receiver
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4653
     is not a multiple of n."
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4654
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4655
    |stop "{ Class:SmallInteger }" argVector|
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4656
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4657
    stop := self size.
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4658
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4659
    "/ the reason for inlining the cases for 2-4 args is to avoid the temporary object creation, and to    
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4660
    "/ allow for the compiler (jitter) to generate better code for the block-call
6554
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4661
    n == 2 ifTrue:[
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4662
        1 to:stop by:n do:[:index |
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4663
            anNArgBlock value:(self at:index) value:(self at:index+1).
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4664
        ].
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4665
        ^ self.
6554
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4666
    ].
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4667
    n == 3 ifTrue:[
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4668
        1 to:stop by:n do:[:index |
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4669
            anNArgBlock value:(self at:index) value:(self at:index+1) value:(self at:index+2).
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4670
        ].
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4671
        ^ self.
6554
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4672
    ].
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4673
    n == 4 ifTrue:[
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4674
        1 to:stop by:n do:[:index |
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4675
            anNArgBlock value:(self at:index) value:(self at:index+1) value:(self at:index+2) value:(self at:index+3).
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4676
        ].
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4677
        ^ self.
6554
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4678
    ].
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4679
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4680
    argVector := Array new:n.
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4681
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4682
    1 to:stop by:n do:[:index |
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4683
        argVector replaceFrom:1 to:n with:self startingAt:index.
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4684
        anNArgBlock valueWithArguments:argVector.
6554
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4685
    ].
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4686
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4687
    "for groups of 2, this is the same as:
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4688
     #(1 one 2 two 3 three 4 four 5 five 6 six)
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4689
         pairWiseDo:[:num :sym | Transcript show:num; show:' is: '; showCR:sym]
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4690
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4691
     #(1 one 2 two 3 three 4 four 5 five 6 six)
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4692
         inGroupsOf:2 do:[:num :sym | Transcript show:num; show:' is: '; showCR:sym]
6554
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4693
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4694
     #( 1 2 3 4 5    6 7 8 9 10   11 12 13 14 15   16 17 18 19 20 )
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4695
         inGroupsOf:5 do:[:a :b :c :d :e | Transcript show:a;space;show:b;space;show:c;space;show:d;space;showCR:e]
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4696
    "
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4697
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4698
    "Modified: / 27-10-2006 / 10:07:55 / cg"
6554
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4699
!
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4700
8853
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4701
keysAndValuesCollect:aTwoArgBlock
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4702
    "evaluate the argument, aBlock for every element in the collection,
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4703
     passing both index and element as arguments.
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4704
     Collect the returned values and return them."
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4705
9301
c13b68ca4a66 keysAndValuesCollect: was bad for fixed-sized collections
Claus Gittinger <cg@exept.de>
parents: 9291
diff changeset
  4706
    |sz newCollection|
c13b68ca4a66 keysAndValuesCollect: was bad for fixed-sized collections
Claus Gittinger <cg@exept.de>
parents: 9291
diff changeset
  4707
c13b68ca4a66 keysAndValuesCollect: was bad for fixed-sized collections
Claus Gittinger <cg@exept.de>
parents: 9291
diff changeset
  4708
    sz := self size.
c13b68ca4a66 keysAndValuesCollect: was bad for fixed-sized collections
Claus Gittinger <cg@exept.de>
parents: 9291
diff changeset
  4709
    newCollection := self copyEmptyAndGrow:sz.
c13b68ca4a66 keysAndValuesCollect: was bad for fixed-sized collections
Claus Gittinger <cg@exept.de>
parents: 9291
diff changeset
  4710
    1 to:sz do:[:index |
c13b68ca4a66 keysAndValuesCollect: was bad for fixed-sized collections
Claus Gittinger <cg@exept.de>
parents: 9291
diff changeset
  4711
        newCollection at:index put:(aTwoArgBlock value:index value:(self at:index)).
8853
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4712
    ].
9301
c13b68ca4a66 keysAndValuesCollect: was bad for fixed-sized collections
Claus Gittinger <cg@exept.de>
parents: 9291
diff changeset
  4713
8853
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4714
    ^ newCollection
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4715
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4716
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4717
     #(one two three four five six)
9301
c13b68ca4a66 keysAndValuesCollect: was bad for fixed-sized collections
Claus Gittinger <cg@exept.de>
parents: 9291
diff changeset
  4718
        keysAndValuesCollect:[:key :element |
c13b68ca4a66 keysAndValuesCollect: was bad for fixed-sized collections
Claus Gittinger <cg@exept.de>
parents: 9291
diff changeset
  4719
                            key even ifTrue:element ifFalse:[element asUppercase]]
8853
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4720
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4721
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4722
     |d|
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4723
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4724
     d := Dictionary new.
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4725
     d at:'a' put:'A'.
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4726
     d at:'b' put:'B'.
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4727
     d at:'c' put:'C'.
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4728
     d at:'d' put:'D'.
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4729
     d at:'e' put:'E'.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4730
     d keysAndValuesCollect:[:key :element |
9301
c13b68ca4a66 keysAndValuesCollect: was bad for fixed-sized collections
Claus Gittinger <cg@exept.de>
parents: 9291
diff changeset
  4731
                            key first codePoint even
c13b68ca4a66 keysAndValuesCollect: was bad for fixed-sized collections
Claus Gittinger <cg@exept.de>
parents: 9291
diff changeset
  4732
                                ifTrue:element
c13b68ca4a66 keysAndValuesCollect: was bad for fixed-sized collections
Claus Gittinger <cg@exept.de>
parents: 9291
diff changeset
  4733
                                ifFalse:[element asLowercase]]
8853
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4734
    "
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4735
!
dab477726542 +keysAndValuesCollect:
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  4736
14686
9192f0a036fb class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14674
diff changeset
  4737
keysAndValuesConform:aTwoArgBlock
9192f0a036fb class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14674
diff changeset
  4738
    "evaluate the argument, aBlock for every element in the collection,
9192f0a036fb class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14674
diff changeset
  4739
     passing both index and element as arguments.
9192f0a036fb class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14674
diff changeset
  4740
     Return false if any such evaluation returns false, true otherwise."
9192f0a036fb class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14674
diff changeset
  4741
9192f0a036fb class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14674
diff changeset
  4742
    self keysAndValuesDo:[:index :el | 
9192f0a036fb class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14674
diff changeset
  4743
        (aTwoArgBlock value:index value:el) ifFalse:[^  false].
9192f0a036fb class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14674
diff changeset
  4744
    ].
9192f0a036fb class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14674
diff changeset
  4745
    ^  true
9192f0a036fb class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14674
diff changeset
  4746
9192f0a036fb class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14674
diff changeset
  4747
    "
9192f0a036fb class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14674
diff changeset
  4748
     #(10 20 30 40) keysAndValuesConform:[:key :element | element = (key * 10) ]. 
9192f0a036fb class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14674
diff changeset
  4749
     #(10 20 30 33 40) keysAndValuesConform:[:key :element | element = (key * 10) ]. 
9192f0a036fb class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14674
diff changeset
  4750
    "
9192f0a036fb class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14674
diff changeset
  4751
!
9192f0a036fb class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14674
diff changeset
  4752
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4753
keysAndValuesDo:aTwoArgBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4754
    "evaluate the argument, aBlock for every element in the collection,
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4755
     passing both index and element as arguments."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4756
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4757
    |stop  "{ Class:SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4758
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4759
    stop := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4760
    1 to:stop do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4761
	aTwoArgBlock value:index value:(self at:index).
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4762
    ]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4763
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4764
     #(one two three four five six)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4765
	keysAndValuesDo:[:key :element |
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4766
			    Transcript show:key; space; showCR:element
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4767
			]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4768
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4769
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4770
1359
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  4771
keysAndValuesReverseDo:aTwoArgBlock
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4772
    "evaluate the argument, aBlock in reverse order, for every element
1359
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  4773
     in the collection, passing both index and element as arguments."
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  4774
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  4775
    |stop  "{ Class:SmallInteger }"|
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  4776
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  4777
    stop := self size.
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  4778
    stop to:1 by:-1 do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4779
	aTwoArgBlock value:index value:(self at:index).
1359
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  4780
    ]
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  4781
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  4782
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4783
     #(one two three four five six)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4784
	keysAndValuesReverseDo:[:key :element |
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4785
				    Transcript show:key; space; showCR:element
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4786
			       ]
1359
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  4787
    "
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  4788
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  4789
    "Modified: 9.5.1996 / 00:57:23 / cg"
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  4790
!
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  4791
13043
a7a5fdfecb14 added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13003
diff changeset
  4792
keysDo:aBlock
a7a5fdfecb14 added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13003
diff changeset
  4793
    "evaluate the argument, aBlock for every key in the collection.
a7a5fdfecb14 added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13003
diff changeset
  4794
     That is: enumerate the indices.
a7a5fdfecb14 added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13003
diff changeset
  4795
     Here mostly for protocol compatibility."
a7a5fdfecb14 added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13003
diff changeset
  4796
13792
5d34db2e46bf comment/format in: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13719
diff changeset
  4797
    1 to:(self size) do:aBlock
13043
a7a5fdfecb14 added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13003
diff changeset
  4798
a7a5fdfecb14 added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13003
diff changeset
  4799
    "
a7a5fdfecb14 added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13003
diff changeset
  4800
     #(one two three four five six)
a7a5fdfecb14 added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13003
diff changeset
  4801
        keysDo:[:key | Transcript show:key; space; showCR:element
a7a5fdfecb14 added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13003
diff changeset
  4802
     ]
a7a5fdfecb14 added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13003
diff changeset
  4803
    "
a7a5fdfecb14 added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13003
diff changeset
  4804
a7a5fdfecb14 added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13003
diff changeset
  4805
    "Created: / 24-08-2010 / 10:11:23 / cg"
a7a5fdfecb14 added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13003
diff changeset
  4806
!
a7a5fdfecb14 added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13003
diff changeset
  4807
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4808
nonNilElementsDo:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4809
    "evaluate the argument, aBlock for every non-nil element in the collection."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4810
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4811
    |stop "{ Class:SmallInteger }"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4812
     element|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4813
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4814
    stop := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4815
    1 to:stop do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4816
	(element := self at:index) notNil ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4817
	    aBlock value:element.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4818
	]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4819
    ]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4820
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1421
diff changeset
  4821
     #(one nil three nil five nil seven) nonNilElementsDo:[:element | Transcript showCR:element]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4822
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4823
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4824
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4825
pairWiseCollect:aTwoArgBlock
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4826
    "evaluate the argument, aTwoArgBlock for every pair of elements in the collection.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4827
     The block is called with 2 arguments for each 2 elements in the receiver.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4828
     An error will be reported, if the number of elements in the receiver
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4829
     is not a multiple of 2.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4830
     Collect the results and return a new collection containing those."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4831
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4832
    ^ self inGroupsOf:2 collect:aTwoArgBlock
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  4833
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  4834
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4835
     #(1 one 2 two 3 three 4 four 5 five 6 six)
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4836
         pairWiseCollect:[:num :sym | sym->num]
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4837
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4838
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4839
     #(1 1  1 2  1 3  1 4  1 5)
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4840
         pairWiseCollect:[:x :y | x@y]
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4841
    "
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4842
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4843
    "Modified: / 27-10-2006 / 10:05:24 / cg"
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4844
!
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4845
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4846
pairWiseDo:aTwoArgBlock
10385
5a2e22929fc8 comment
Claus Gittinger <cg@exept.de>
parents: 10194
diff changeset
  4847
    "evaluate the argument, aTwoArgBlock for every group of 2 elements in the collection.
5a2e22929fc8 comment
Claus Gittinger <cg@exept.de>
parents: 10194
diff changeset
  4848
     An error will be reported, if the number of elements in the receiver 
12346
15decc41395b comments
Claus Gittinger <cg@exept.de>
parents: 12320
diff changeset
  4849
     is not a multiple of 2.
15decc41395b comments
Claus Gittinger <cg@exept.de>
parents: 12320
diff changeset
  4850
     CONFUSION ATTACK: 
15decc41395b comments
Claus Gittinger <cg@exept.de>
parents: 12320
diff changeset
  4851
        this is different from pairWiseDo:.
15decc41395b comments
Claus Gittinger <cg@exept.de>
parents: 12320
diff changeset
  4852
        but the Squeak-pairsDo: does the same as our pairWiseDo: 
15decc41395b comments
Claus Gittinger <cg@exept.de>
parents: 12320
diff changeset
  4853
        (sigh: but we were first, so they should have adapted...)"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4854
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4855
    ^ self inGroupsOf:2 do:aTwoArgBlock
6554
1e25dea82fa0 new #inGroupsOf:do: and #inGroupsOf:collect:
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
  4856
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4857
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4858
     #(1 one 2 two 3 three 4 four 5 five 6 six)
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4859
         pairWiseDo:[:num :sym | Transcript show:num; show:' is: '; showCR:sym]
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4860
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4861
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4862
     #(1 1  1 2  1 3  1 4  1 5)
10150
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4863
         pairWiseDo:[:x :y | Transcript showCR:x@y]
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4864
    "
9c6760043964 comment
Claus Gittinger <cg@exept.de>
parents: 9478
diff changeset
  4865
10385
5a2e22929fc8 comment
Claus Gittinger <cg@exept.de>
parents: 10194
diff changeset
  4866
    "Modified: / 11-02-2007 / 09:31:29 / cg"
61
claus
parents: 44
diff changeset
  4867
!
claus
parents: 44
diff changeset
  4868
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4869
reverseDo:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4870
    "evaluate the argument, aBlock for every element in the collection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4871
     in reverse order"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4872
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4873
    |sz  "{ Class:SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4874
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4875
    sz := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4876
    sz to:1 by:-1 do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4877
	aBlock value:(self at:index).
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4878
    ]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4879
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4880
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1421
diff changeset
  4881
     #(one two three four five six) reverseDo:[:element | Transcript showCR:element]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4882
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4883
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4884
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4885
select:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4886
    "evaluate the argument, aBlock for every element in the collection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4887
     and return a collection of all elements for which the block return
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4888
     true"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4889
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4890
    |element newColl species needCopy
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4891
     sz  "{ Class:SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4892
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4893
    sz := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4894
    species := self species.
14109
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4895
    species growIsCheap ifTrue:[
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4896
        newColl := self copyEmpty:sz.
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4897
        needCopy := false
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4898
    ] ifFalse:[
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4899
        newColl := OrderedCollection new:sz.
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4900
        needCopy := true
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4901
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4902
    1 to:sz do:[:index |
14109
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4903
        element := self at:index.
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4904
        (aBlock value:element) ifTrue:[
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4905
            newColl add:element
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4906
        ].
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4907
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4908
    needCopy ifTrue:[
14109
c6720b53d570 formatting changed:
Stefan Vogel <sv@exept.de>
parents: 14102
diff changeset
  4909
        newColl := (species withAll:newColl) postCopyFrom:self
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4910
    ].
61
claus
parents: 44
diff changeset
  4911
    ^ newColl
claus
parents: 44
diff changeset
  4912
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  4913
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4914
     #(one two three four five six) select:[:element | element startsWith:'f']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4915
     #(1 2 3 4 5 6 7 8 9) select:[:element | element odd]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4916
     (#(17 12 1 98 51) asSortedCollection:[:a :b | b < a]) select:[:element | element odd]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4917
     (1 to:9) select:[:element | element odd]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4918
     (Smalltalk allClasses) select:[:class | class name startsWith:'S']
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  4919
    "
186
a4c3032fc825 *** empty log message ***
claus
parents: 159
diff changeset
  4920
!
a4c3032fc825 *** empty log message ***
claus
parents: 159
diff changeset
  4921
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4922
with:aSequenceableCollection do:aTwoArgBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4923
    "evaluate the argument, aBlock for successive elements from
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4924
     each the receiver and the argument, aSequenceableCollection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4925
     The second argument, aBlock must be a two-argument block.
13469
7f911a9f891d comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13465
diff changeset
  4926
     The collection argument must implement access via a numeric key 
7f911a9f891d comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13465
diff changeset
  4927
     and (new!!) the sizes must be the same."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4928
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4929
    |stop  "{ Class: SmallInteger }" |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4930
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4931
    stop := self size.
13465
35721e64ac25 changed: #with:do:
Claus Gittinger <cg@exept.de>
parents: 13384
diff changeset
  4932
    aSequenceableCollection size == stop ifFalse:[
13469
7f911a9f891d comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13465
diff changeset
  4933
        NotEnoughElementsSignal raiseRequestErrorString:'collections must be of the same size'.
13465
35721e64ac25 changed: #with:do:
Claus Gittinger <cg@exept.de>
parents: 13384
diff changeset
  4934
    ].
13469
7f911a9f891d comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13465
diff changeset
  4935
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4936
    1 to:stop do:[:index |
13465
35721e64ac25 changed: #with:do:
Claus Gittinger <cg@exept.de>
parents: 13384
diff changeset
  4937
        aTwoArgBlock value:(self at:index) value:(aSequenceableCollection at:index).
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4938
    ]
13465
35721e64ac25 changed: #with:do:
Claus Gittinger <cg@exept.de>
parents: 13384
diff changeset
  4939
186
a4c3032fc825 *** empty log message ***
claus
parents: 159
diff changeset
  4940
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  4941
     #(one two three four five six)
13465
35721e64ac25 changed: #with:do:
Claus Gittinger <cg@exept.de>
parents: 13384
diff changeset
  4942
        with:(1 to:10)
35721e64ac25 changed: #with:do:
Claus Gittinger <cg@exept.de>
parents: 13384
diff changeset
  4943
        do:[:el1 :el2 | Transcript show:el1; space; showCR:el2]
35721e64ac25 changed: #with:do:
Claus Gittinger <cg@exept.de>
parents: 13384
diff changeset
  4944
    "
35721e64ac25 changed: #with:do:
Claus Gittinger <cg@exept.de>
parents: 13384
diff changeset
  4945
13469
7f911a9f891d comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13465
diff changeset
  4946
    "Modified (Format): / 30-06-2011 / 17:39:59 / cg"
9454
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4947
!
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4948
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4949
with:aSequenceableCollection doWithIndex:aThreeArgBlock
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4950
    "evaluate the argument, aBlock for successive elements from
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4951
     each the receiver and the argument, aSequenceableCollection.
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4952
     aBlock must be a three-argument block, which get elements from either collection and
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4953
     the index as arguments.
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4954
     The collection argument must implement access via a numeric key."
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4955
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4956
    |stop  "{ Class: SmallInteger }" |
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4957
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4958
    stop := self size.
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4959
    1 to:stop do:[:index |
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4960
        aThreeArgBlock 
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4961
            value:(self at:index) 
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4962
            value:(aSequenceableCollection at:index)
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4963
            value:index.
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4964
    ]
13897
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4965
9454
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4966
    "
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4967
     #(one two three four five six)
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4968
        with:(1 to:10)
13897
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4969
        doWithIndex:[:el1 :el2 :idx| Transcript show:idx; space; show:el1; space; showCR:el2]
9454
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4970
    "
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4971
7a9116db27b6 +with:doWithIndex:
fm
parents: 9414
diff changeset
  4972
    "Created: / 05-07-2006 / 18:07:11 / fm"
13897
Claus Gittinger <cg@exept.de>
parents: 13792
diff changeset
  4973
    "Modified (comment): / 08-01-2012 / 17:18:59 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4974
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4975
4154
6938d9274ee4 category rename
Claus Gittinger <cg@exept.de>
parents: 3992
diff changeset
  4976
!SequenceableCollection methodsFor:'filling & replacing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4977
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4978
atAllPut:anObject
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4979
    "replace all elements of the collection by the argument, anObject.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4980
     Notice: This operation modifies the receiver, NOT a copy;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4981
     therefore the change may affect all others referencing the receiver."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4982
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4983
    self from:1 to:(self size) put:anObject
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4984
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4985
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  4986
     args:    anObject : <object>
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  4987
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  4988
     returns: self
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  4989
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  4990
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  4991
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4992
     (Array new:10) atAllPut:1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4993
     (String new:10) atAllPut:$a
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4994
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  4995
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  4996
    "Modified: / 20.5.1998 / 15:14:11 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4997
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  4998
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4999
from:index1 to:index2 put:anObject
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5000
    "replace the elements from index1 to index2 of the collection
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  5001
     by the argument, anObject.
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  5002
     Notice: This operation modifies the receiver, NOT a copy;
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  5003
     therefore the change may affect all others referencing the receiver."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5004
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5005
    |index "{ Class: SmallInteger }"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5006
     end   "{ Class: SmallInteger }"|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5007
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5008
    index := index1.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5009
    end := index2.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5010
    [index <= end] whileTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5011
	self at:index put:anObject.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5012
	index := index + 1
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5013
    ]
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  5014
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5015
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5016
     args:    index1    : <integer>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5017
	      index2    : <integer>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5018
	      anObject  : <object>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5019
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5020
     returns: self
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5021
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5022
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5023
    "
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5024
     #(1 2 3 4 5 6 7 8 9 0) from:3 to:6 put:$X
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5025
     'abcdefghijkl' from:3 to:6 put:$X
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5026
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5027
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5028
    "Modified: / 20.5.1998 / 15:16:52 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5029
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5030
3003
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5031
replaceAll:oldObject by:newObject
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5032
    "backward ST/X compatibility: an alias for #replaceAll:with:.
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5033
     Pleace do no longer use this one;
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5034
     instead use #replaceAll:with: for ST-80 compatibility."
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5035
5872
240f458c3f82 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5850
diff changeset
  5036
    <resource:#obsolete>
240f458c3f82 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5850
diff changeset
  5037
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5038
    self obsoleteMethodWarning:'use #replaceAll:with:'.
3003
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5039
    ^ self replaceAll:oldObject with:newObject
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5040
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5041
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5042
     args:    oldObject  : <object>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5043
	      newObject  : <object>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5044
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5045
     returns: self
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5046
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5047
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5048
    "Modified: / 20.5.1998 / 15:16:28 / cg"
3003
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5049
!
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5050
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5051
replaceAll:oldObject by:newObject from:startIndex to:stopIndex
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5052
    "backward ST/X compatibility: an alias for #replaceAll:with:from:to:.
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5053
     Please do no longer use this one;
3003
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5054
     instead use #replaceAll:with:from:to: for ST-80 compatibility."
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5055
5872
240f458c3f82 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5850
diff changeset
  5056
    <resource:#obsolete>
240f458c3f82 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5850
diff changeset
  5057
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5058
    self obsoleteMethodWarning:'use #replaceAll:with:from:to:'.
3003
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5059
    ^ self replaceAll:oldObject with:newObject from:startIndex to:stopIndex
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5060
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5061
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5062
     args:    oldObject  : <object>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5063
	      newObject  : <object>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5064
	      startIndex : <integer>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5065
	      stopIndex  : <integer>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5066
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5067
     returns: self
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5068
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5069
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5070
    "Modified: / 20.5.1998 / 15:16:02 / cg"
3003
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5071
!
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5072
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  5073
replaceAll:oldObject with:newObject
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  5074
    "replace all oldObjects by newObject in the receiver.
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5075
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  5076
     Notice: This operation modifies the receiver, NOT a copy;
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  5077
     therefore the change may affect all others referencing the receiver."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5078
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5079
    ^ self
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5080
	replaceAll:oldObject
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5081
	with:newObject
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5082
	from:1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5083
	to:self size
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5084
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5085
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5086
     args:    oldObject  : <object>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5087
	      newObject  : <object>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5088
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5089
     returns: self
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5090
    "
362
claus
parents: 360
diff changeset
  5091
claus
parents: 360
diff changeset
  5092
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5093
     '123123abc123' replaceAll:$1 with:$*
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5094
     #(1 2 3 4 1 2 3 4) copy replaceAll:1 with:'one'
362
claus
parents: 360
diff changeset
  5095
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5096
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5097
    "Modified: / 20.5.1998 / 15:26:10 / cg"
362
claus
parents: 360
diff changeset
  5098
!
293
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  5099
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  5100
replaceAll:oldObject with:newObject from:startIndex to:stopIndex
362
claus
parents: 360
diff changeset
  5101
    "replace all oldObjects found between startIndex and endIndex,
claus
parents: 360
diff changeset
  5102
     by newObject in the receiver.
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5103
362
claus
parents: 360
diff changeset
  5104
     Notice: This operation modifies the receiver, NOT a copy;
claus
parents: 360
diff changeset
  5105
     therefore the change may affect all others referencing the receiver."
claus
parents: 360
diff changeset
  5106
claus
parents: 360
diff changeset
  5107
    |start "{ Class: SmallInteger }"
claus
parents: 360
diff changeset
  5108
     stop  "{ Class: SmallInteger }"|
claus
parents: 360
diff changeset
  5109
claus
parents: 360
diff changeset
  5110
    start := startIndex.
claus
parents: 360
diff changeset
  5111
    stop := stopIndex.
claus
parents: 360
diff changeset
  5112
    startIndex to:stopIndex do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5113
	(self at:index) = oldObject ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5114
	    self at:index put:newObject
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5115
	]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5116
    ]
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  5117
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5118
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5119
     args:    oldObject  : <object>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5120
	      newObject  : <object>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5121
	      startIndex : <integer>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5122
	      stopIndex  : <integer>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5123
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5124
     returns: self
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5125
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5126
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5127
    "
2980
a662ffcfad1d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2927
diff changeset
  5128
     '123123abc123' replaceAll:$1 with:$*
a662ffcfad1d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2927
diff changeset
  5129
     '123123abc123' replaceAll:$1 with:$* from:1 to:6
a662ffcfad1d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2927
diff changeset
  5130
     #(1 2 3 4 1 2 3 4) replaceAll:1 with:'one' from:1 to:4
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5131
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5132
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5133
    "Modified: / 20.5.1998 / 15:23:10 / cg"
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5134
!
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5135
7615
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5136
replaceAllForWhich:aConditionBlock with:newObject
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5137
    "replace all elements for which aConditionBlock returns true
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5138
     between startIndex and endIndex, by newObject in the receiver.
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5139
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5140
     Notice: This operation modifies the receiver, NOT a copy;
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5141
     therefore the change may affect all others referencing the receiver."
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5142
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5143
    self
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5144
	replaceAllForWhich:aConditionBlock with:newObject
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5145
	from:1 to:(self size)
7615
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5146
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5147
    "
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5148
     args:    aConditionBlock  : <block>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5149
	      newObject        : <object>
7615
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5150
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5151
     returns: self
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5152
    "
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5153
!
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5154
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5155
replaceAllForWhich:aConditionBlock with:newObject from:startIndex to:stopIndex
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5156
    "replace all elements for which aConditionBlock returns true
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5157
     between startIndex and endIndex, by newObject in the receiver.
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5158
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5159
     Notice: This operation modifies the receiver, NOT a copy;
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5160
     therefore the change may affect all others referencing the receiver."
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5161
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5162
    |start "{ Class: SmallInteger }"
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5163
     stop  "{ Class: SmallInteger }"|
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5164
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5165
    start := startIndex.
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5166
    stop := stopIndex.
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5167
    startIndex to:stopIndex do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5168
	(aConditionBlock value:(self at:index)) ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5169
	    self at:index put:newObject
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5170
	]
7615
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5171
    ]
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5172
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5173
    "
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5174
     args:    aConditionBlock  : <block>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5175
	      newObject        : <object>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5176
	      startIndex       : <integer>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5177
	      stopIndex        : <integer>
7615
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5178
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5179
     returns: self
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5180
    "
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5181
!
5673d1743247 +replaceAllForWhich:with:
Claus Gittinger <cg@exept.de>
parents: 7598
diff changeset
  5182
5320
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5183
replaceAllIdentical:oldObject with:newObject
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5184
    "replace all oldObjects by newObject in the receiver.
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5185
     This is like #replaceAll:with:from:to:, but uses an identity compare.
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5186
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5187
     Notice: This operation modifies the receiver, NOT a copy;
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5188
     therefore the change may affect all others referencing the receiver."
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5189
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5190
    ^ self
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5191
	replaceAllIdentical:oldObject
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5192
	with:newObject
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5193
	from:1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5194
	to:self size
5320
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5195
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5196
    "
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5197
     args:    oldObject  : <object>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5198
	      newObject  : <object>
5320
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5199
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5200
     returns: self
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5201
    "
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5202
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5203
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5204
     #(1 2 3 4 1.0 2.0 3.0 4.0) copy replaceAll:1 with:'one'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5205
     #(1 2 3 4 1.0 2.0 3.0 4.0) copy replaceAllIdentical:1 with:'one'
5320
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5206
    "
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5207
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5208
!
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5209
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5210
replaceAllIdentical:oldObject with:newObject from:startIndex to:stopIndex
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5211
    "replace all oldObjects found between startIndex and endIndex,
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5212
     by newObject in the receiver.
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5213
     This is like #replaceAll:with:from:to:, but uses an identity compare.
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5214
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5215
     Notice: This operation modifies the receiver, NOT a copy;
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5216
     therefore the change may affect all others referencing the receiver."
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5217
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5218
    |start "{ Class: SmallInteger }"
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5219
     stop  "{ Class: SmallInteger }"|
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5220
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5221
    start := startIndex.
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5222
    stop := stopIndex.
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5223
    startIndex to:stopIndex do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5224
	(self at:index) == oldObject ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5225
	    self at:index put:newObject
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5226
	]
5320
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5227
    ]
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5228
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5229
    "
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5230
     args:    oldObject  : <object>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5231
	      newObject  : <object>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5232
	      startIndex : <integer>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5233
	      stopIndex  : <integer>
5320
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5234
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5235
     returns: self
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5236
    "
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5237
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5238
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5239
     #(1 2 3 4 1 2 3 4) replaceAll:1 with:'one' from:1 to:8
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5240
     #(1 2 3 4 1.0 2.0 3.0 4.0) replaceAll:1 with:'one' from:1 to:8
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5241
     #(1 2 3 4 1.0 2.0 3.0 4.0) replaceAllIdentical:1 with:'one' from:1 to:8
5962
bc527a4e17be example added
Claus Gittinger <cg@exept.de>
parents: 5887
diff changeset
  5242
    "
5320
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5243
!
bad0dcfeb534 added #replaceAllIdentical:with:
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
  5244
3003
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5245
replaceAny:aCollection by:newObject
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5246
    "backward ST/X compatibility; alias for #replaceAny:with:.
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  5247
     Pleace do no longer use this one;
3003
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5248
     instead use #replaceAny:with: for naming consistence."
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5249
5872
240f458c3f82 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5850
diff changeset
  5250
    <resource:#obsolete>
240f458c3f82 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5850
diff changeset
  5251
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5252
    self obsoleteMethodWarning:'use #replaceAny:with:'.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5253
    ^ self replaceAny:aCollection with:newObject from:1 to:self size
3003
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5254
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5255
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5256
     args:    aCollection    : <colleciton of <object> >
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5257
	      newObject      : <object>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5258
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5259
     returns: self
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5260
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5261
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5262
    "
3003
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5263
     '123123abc123' replaceAny:#($1 $2) with:$*
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5264
     #('foo' 'bar' 'foo' 'baz' foo 1 2 3) replaceAny:#(foo 1) with:'*'
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5265
    "
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5266
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5267
    "Modified: / 20.5.1998 / 15:17:51 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5268
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5269
3003
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5270
replaceAny:aCollection by:newObject from:startIndex to:stopIndex
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5271
    "backward ST/X compatibility; alias for #replaceAny:with:from:to:.
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  5272
     Pleace do no longer use this one;
3003
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5273
     instead use #replaceAny:with:from:to: for naming consistence."
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5274
5872
240f458c3f82 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5850
diff changeset
  5275
    <resource:#obsolete>
240f458c3f82 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5850
diff changeset
  5276
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5277
    self obsoleteMethodWarning:'use #replaceAny:with:from:to:'.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5278
    ^ self replaceAny:aCollection with:newObject from:startIndex to:stopIndex
3003
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5279
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5280
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5281
     args:    aCollection    : <colleciton of <object> >
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5282
	      newObject      : <object>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5283
	      startIndex     : <integer>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5284
	      stopIndex     : <integer>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5285
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5286
     returns: self
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5287
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5288
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5289
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5290
     '123123abc123' replaceAny:#($1 $2) with:$* from:1 to:6
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5291
     #('foo' 'bar' 'foo' 'baz' foo 1 2 3) replaceAny:#(foo 1) with:'*'
3003
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5292
    "
0f66385bbbd2 replaceAny / replaceAll
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
  5293
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5294
    "Modified: / 20.5.1998 / 15:18:16 / cg"
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  5295
!
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  5296
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  5297
replaceAny:aCollection with:newObject
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  5298
    "replace all elements, which are in aCollection, by newObject.
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5299
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  5300
     Notice: This operation modifies the receiver, NOT a copy;
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  5301
     therefore the change may affect all others referencing the receiver."
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  5302
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5303
    ^ self
10439
6b69b2ecb04c comment
Claus Gittinger <cg@exept.de>
parents: 10385
diff changeset
  5304
        replaceAny:aCollection
6b69b2ecb04c comment
Claus Gittinger <cg@exept.de>
parents: 10385
diff changeset
  5305
        with:newObject
6b69b2ecb04c comment
Claus Gittinger <cg@exept.de>
parents: 10385
diff changeset
  5306
        from:1
6b69b2ecb04c comment
Claus Gittinger <cg@exept.de>
parents: 10385
diff changeset
  5307
        to:self size
6b69b2ecb04c comment
Claus Gittinger <cg@exept.de>
parents: 10385
diff changeset
  5308
6b69b2ecb04c comment
Claus Gittinger <cg@exept.de>
parents: 10385
diff changeset
  5309
    "
6b69b2ecb04c comment
Claus Gittinger <cg@exept.de>
parents: 10385
diff changeset
  5310
     #(1 2 3 4 5 6 7 1 2 3 4 5 6 7) copy replaceAny:#(1 3 5 9) with:99
6b69b2ecb04c comment
Claus Gittinger <cg@exept.de>
parents: 10385
diff changeset
  5311
     'abcdefgabcdefg' copy replaceAny:'abx' with:$_  
6b69b2ecb04c comment
Claus Gittinger <cg@exept.de>
parents: 10385
diff changeset
  5312
    "
6b69b2ecb04c comment
Claus Gittinger <cg@exept.de>
parents: 10385
diff changeset
  5313
6b69b2ecb04c comment
Claus Gittinger <cg@exept.de>
parents: 10385
diff changeset
  5314
    "Modified: / 06-03-2007 / 17:01:01 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5315
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5316
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  5317
replaceAny:aCollection with:newObject from:startIndex to:stopIndex
362
claus
parents: 360
diff changeset
  5318
    "replace all elements within a range,
claus
parents: 360
diff changeset
  5319
     which are in contained in aCollection by newObject.
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5320
362
claus
parents: 360
diff changeset
  5321
     Notice: This operation modifies the receiver, NOT a copy;
claus
parents: 360
diff changeset
  5322
     therefore the change may affect all others referencing the receiver."
claus
parents: 360
diff changeset
  5323
claus
parents: 360
diff changeset
  5324
    |start "{ Class: SmallInteger }"
claus
parents: 360
diff changeset
  5325
     stop "{ Class: SmallInteger }"|
claus
parents: 360
diff changeset
  5326
claus
parents: 360
diff changeset
  5327
    start := startIndex.
claus
parents: 360
diff changeset
  5328
    stop := stopIndex.
claus
parents: 360
diff changeset
  5329
    startIndex to:stopIndex do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5330
	(aCollection includes:(self at:index)) ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5331
	    self at:index put:newObject
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5332
	]
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5333
    ]
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5334
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5335
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5336
     args:    aCollection    : <colleciton of <object> >
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5337
	      newObject      : <object>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5338
	      startIndex     : <integer>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5339
	      stopIndex      : <integer>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5340
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5341
     returns: self
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5342
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5343
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5344
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5345
     '123123abc123' replaceAny:#($1 $2) with:$* from:1 to:6
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5346
     #('foo' 'bar' 'foo' 'baz' foo 1 2 3) replaceAny:#(foo 1) with:'*'
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5347
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5348
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5349
    "Modified: / 20.5.1998 / 15:22:43 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5350
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5351
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5352
replaceFrom:startIndex count:numberOfElements with:replacementCollection
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5353
    "replace numberOfElements elements in the receiver from startIndex,
2413
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  5354
     with elements taken from replacementCollection starting at 1.
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5355
2413
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  5356
     Notice: This operation modifies the receiver, NOT a copy;
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  5357
     therefore the change may affect all others referencing the receiver."
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  5358
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5359
    ^ self
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5360
	replaceFrom:startIndex
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5361
	to:(startIndex + numberOfElements - 1)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5362
	with:replacementCollection
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5363
	startingAt:1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5364
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5365
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5366
     '1234567890' replaceFrom:5 count:3 with:'abcdef'
2413
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  5367
     #($a $b $c $d $e) replaceFrom:2 count:2 with:'12345'
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  5368
    "
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  5369
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5370
    "Modified: / 20.5.1998 / 15:25:46 / cg"
2413
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  5371
!
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  5372
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5373
replaceFrom:startIndex count:numberOfElementsToReplace with:replacementCollection startingAt:repStartIndex
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5374
    "replace numberOfElementsToReplace elements in the receiver from startIndex,
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5375
     with elements taken from replacementCollection starting at repStartIndex.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5376
2413
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  5377
     Notice: This operation modifies the receiver, NOT a copy;
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  5378
     therefore the change may affect all others referencing the receiver."
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  5379
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  5380
    ^ self
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5381
	replaceFrom:startIndex
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5382
	to:(startIndex + numberOfElementsToReplace - 1)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5383
	with:replacementCollection
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5384
	startingAt:repStartIndex
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5385
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5386
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5387
     '1234567890' replaceFrom:5 count:3 with:'abcdef' startingAt:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5388
     #($a $b $c $d $e) replaceFrom:2 count:3 with:'12345' startingAt:4
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5389
     #($a $b $c $d $e) asOrderedCollection replaceFrom:2 count:3 with:'12345' startingAt:4
2413
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  5390
    "
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  5391
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5392
    "Modified: / 20.5.1998 / 15:22:22 / cg"
2413
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  5393
!
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  5394
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5395
replaceFrom:startIndex to:stopIndex with:replacementCollection
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5396
    "replace elements in the receiver between index startIndex and stopIndex,
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  5397
     with elements taken from replacementCollection starting at 1.
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5398
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  5399
     Notice: This operation modifies the receiver, NOT a copy;
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  5400
     therefore the change may affect all others referencing the receiver."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5401
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5402
    ^ self
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5403
	replaceFrom:startIndex
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5404
	to:stopIndex
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5405
	with:replacementCollection
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5406
	startingAt:1
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5407
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5408
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5409
     args:    startIndex            : <integer>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5410
	      stopIndex             : <integer>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5411
	      replacementCollection : <colleciton of <object> >
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5412
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5413
     returns: self
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5414
    "
61
claus
parents: 44
diff changeset
  5415
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5416
    "
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5417
     '1234567890' replaceFrom:5 to:7 with:'abcdef'
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5418
     #($a $b $c $d $e) replaceFrom:2 to:3 with:'12345'
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5419
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5420
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5421
    "Modified: / 20.5.1998 / 15:25:37 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5422
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5423
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5424
replaceFrom:startIndex to:stopIndex with:replacementCollection startingAt:repStartIndex
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5425
    "replace elements in the receiver between index startIndex and stopIndex,
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5426
     with elements  taken from replacementCollection starting at repStartIndex.
3234
4cc58bc6a8ed comment
Claus Gittinger <cg@exept.de>
parents: 3055
diff changeset
  5427
     Return the receiver.
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5428
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  5429
     Notice: This operation modifies the receiver, NOT a copy;
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  5430
     therefore the change may affect all others referencing the receiver."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5431
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5432
    |srcIndex "{ Class: SmallInteger }"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5433
     dstIndex "{ Class: SmallInteger }"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5434
     end      "{ Class: SmallInteger }" |
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5435
14130
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5436
    replacementCollection == self ifTrue:[
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5437
        repStartIndex == startIndex ifTrue:[ "noting to copy" ^ self ].
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5438
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5439
        "beware the overlapping copy"
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5440
        (repStartIndex < startIndex) ifTrue:[
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5441
            " must do reverse copy "
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5442
            srcIndex := repStartIndex + (stopIndex - startIndex).
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5443
            dstIndex := stopIndex.
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5444
            end := startIndex.
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5445
            [dstIndex >= end] whileTrue:[
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5446
                self at:dstIndex put:(replacementCollection at:srcIndex).
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5447
                srcIndex := srcIndex - 1.
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5448
                dstIndex := dstIndex - 1
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5449
            ].
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5450
            ^ self
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5451
        ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5452
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5453
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5454
    srcIndex := repStartIndex.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5455
    dstIndex := startIndex.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5456
    end := stopIndex.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5457
    [dstIndex <= end] whileTrue:[
14130
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5458
        self at:dstIndex put:(replacementCollection at:srcIndex).
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5459
        srcIndex := srcIndex + 1.
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5460
        dstIndex := dstIndex + 1
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5461
    ]
61
claus
parents: 44
diff changeset
  5462
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5463
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5464
     args:    startIndex            : <integer>
14130
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5465
              stopIndex             : <integer>
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5466
              replacementCollection : <colleciton of <object> >
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5467
              repStartIndex         : <integer>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5469
     returns: self
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5470
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5471
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5472
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5473
     '1234567890' replaceFrom:5 to:7 with:'abcdef' startingAt:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5474
     #($a $b $c $d $e) replaceFrom:2 to:3 with:'12345' startingAt:4
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5475
     #($a $b $c $d $e) asOrderedCollection replaceFrom:2 to:3 with:'12345' startingAt:4
282
94f5c3a6230d *** empty log message ***
claus
parents: 266
diff changeset
  5476
94f5c3a6230d *** empty log message ***
claus
parents: 266
diff changeset
  5477
     |c|
94f5c3a6230d *** empty log message ***
claus
parents: 266
diff changeset
  5478
     c := #($a $b $c $d $e) asOrderedCollection.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5479
     c replaceFrom:2 to:3 with:c startingAt:4
282
94f5c3a6230d *** empty log message ***
claus
parents: 266
diff changeset
  5480
94f5c3a6230d *** empty log message ***
claus
parents: 266
diff changeset
  5481
     |c|
94f5c3a6230d *** empty log message ***
claus
parents: 266
diff changeset
  5482
     c := #($a $b $c $d $e) asOrderedCollection.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5483
     c replaceFrom:4 to:5 with:c startingAt:2
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  5484
    "
3234
4cc58bc6a8ed comment
Claus Gittinger <cg@exept.de>
parents: 3055
diff changeset
  5485
14130
30e79d420a43 changed: #replaceFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  5486
    "Modified: / 08-05-2012 / 13:23:51 / cg"
61
claus
parents: 44
diff changeset
  5487
!
claus
parents: 44
diff changeset
  5488
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5489
replaceFrom:startIndex with:replacementCollection
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5490
    "replace elements in the receiver starting at startIndex,
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5491
     with elements taken from replacementCollection starting at 1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5492
     to the end of replacementCollection.
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5493
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5494
     Notice: This operation modifies the receiver, NOT a copy;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5495
     therefore the change may affect all others referencing the receiver."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5496
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5497
    ^ self
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5498
	replaceFrom:startIndex
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5499
	to:(startIndex + replacementCollection size - 1)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5500
	with:replacementCollection
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5501
	startingAt:1
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5502
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5503
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5504
     args:    startIndex            : <integer>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5505
	      replacementCollection : <colleciton of <object> >
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5506
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5507
     returns: self
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5508
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5509
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5510
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5511
     '1234567890' replaceFrom:5 with:'abc'
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5512
     #($a $b $c $d $e) replaceFrom:2 with:'123'
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5513
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5514
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5515
    "Modified: / 20.5.1998 / 15:25:27 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5516
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5517
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5518
replaceFrom:startIndex with:replacementCollection startingAt:repStartIndex
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5519
    "replace elements in the receiver starting at startIndex,
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5520
     with elements taken from replacementCollection starting at repStartIndex
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5521
     to the end of replacementCollection.
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5522
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5523
     Notice: This operation modifies the receiver, NOT a copy;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5524
     therefore the change may affect all others referencing the receiver."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5525
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5526
    ^ self
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5527
	replaceFrom:startIndex
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5528
	to:(startIndex + replacementCollection size - repStartIndex)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5529
	with:replacementCollection
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5530
	startingAt:repStartIndex
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5531
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5532
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5533
     args:    startIndex            : <integer>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5534
	      replacementCollection : <colleciton of <object> >
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5535
	      offset                : <integer>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5536
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5537
     returns: self
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5538
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5539
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5540
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5541
     '1234567890' replaceFrom:5 with:'abcdef' startingAt:3
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5542
     #($a $b $c $d $e) replaceFrom:2 with:'12345' startingAt:4
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5543
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5544
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5545
    "Modified: / 20.5.1998 / 15:25:18 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5546
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  5547
14621
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5548
replaceLast:count with:replacementCollection
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5549
    "replace the last count elements elements in the receiver
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5550
     with elements taken from replacementCollection.
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5551
     Return the receiver.
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5552
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5553
     Notice: This operation modifies the receiver, NOT a copy;
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5554
     therefore the change may affect all others referencing the receiver."
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5555
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5556
    self replaceLast:count with:replacementCollection startingAt:1
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5557
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5558
    "
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5559
     '1234567890' replaceLast:5 with:'abcdef'
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5560
    "
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5561
!
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5562
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5563
replaceLast:count with:replacementCollection startingAt:repStartIndex
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5564
    "replace the last count elements elements in the receiver
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5565
     with elements taken from replacementCollection starting at repStartIndex.
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5566
     Return the receiver.
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5567
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5568
     Notice: This operation modifies the receiver, NOT a copy;
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5569
     therefore the change may affect all others referencing the receiver."
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5570
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5571
    |sz|
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5572
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5573
    sz := self size.
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5574
    self replaceFrom:(sz - count + 1) to:sz with:replacementCollection startingAt:repStartIndex
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5575
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5576
    "
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5577
     '1234567890' replaceLast:5 with:'abcdef' startingAt:1
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5578
    "
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5579
!
7f004e0e8998 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14613
diff changeset
  5580
61
claus
parents: 44
diff changeset
  5581
startingAt:sourceStart replaceElementsIn:destColl from:destStartIndex to:destEndIndex
claus
parents: 44
diff changeset
  5582
    "replace elements in destColl with elements from the receiver.
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5583
61
claus
parents: 44
diff changeset
  5584
     Notice: This operation modifies the destination collection, NOT a copy;
claus
parents: 44
diff changeset
  5585
     therefore the change may affect all others referencing this object."
claus
parents: 44
diff changeset
  5586
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5587
    destColl
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5588
	replaceFrom:destStartIndex
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5589
	to:destEndIndex
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5590
	with:self
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5591
	startingAt:sourceStart
61
claus
parents: 44
diff changeset
  5592
claus
parents: 44
diff changeset
  5593
    "
claus
parents: 44
diff changeset
  5594
     |s|
claus
parents: 44
diff changeset
  5595
     s := 'abcdefghijklmnop'.
claus
parents: 44
diff changeset
  5596
     '1234567890' startingAt:1 replaceElementsIn:s from:1 to:3.
claus
parents: 44
diff changeset
  5597
     s'123defghijklmnop'
claus
parents: 44
diff changeset
  5598
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5599
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  5600
    "Modified: / 20.5.1998 / 15:25:08 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5601
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5602
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5603
!SequenceableCollection methodsFor:'obsolete'!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5604
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5605
randomizedQuickSortFrom:inBegin to:inEnd sortBlock:sortBlock with:aCollection
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5606
    "actual randomizedQuicksort worker for sort:with:-message.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5607
     This exchanges a random element within the partition, to avoid
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5608
     the worst case O-square situation of quickSort.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5609
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5610
     Notice, that this method has a much worse best- and average case
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5611
     runTime, due to the random number generation.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5612
     The worst case of quickSort is encountered, if the choosen pivot
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5613
     element lies at either end of the partition, so that a split
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5614
     creates partitions of size 1 and (n-1).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5615
     Since the middle element is choosen, this worst case is very unlikely
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5616
     to be encountered."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5617
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5618
    <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5619
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5620
    self obsoleteMethodWarning:'use quickSortFrom:to:sortBlock:with:'.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5621
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5622
    "/ code was never used - use regular sort for backward compatibility
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5623
    ^ self quickSortFrom:inBegin to:inEnd sortBlock:sortBlock with:aCollection
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5624
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5625
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5626
"/    |begin   "{ Class: SmallInteger }"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5627
"/     end     "{ Class: SmallInteger }"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5628
"/     b       "{ Class: SmallInteger }"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5629
"/     e       "{ Class: SmallInteger }"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5630
"/     rnd     "{ Class: SmallInteger }"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5631
"/     middleElement temp1 temp2 |
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5632
"/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5633
"/    begin := inBegin.   "/ this also does a type-check
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5634
"/    end := inEnd.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5635
"/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5636
"/    b := begin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5637
"/    e := end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5638
"/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5639
"/    "/ randomize that partition
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5640
"/    "/ by exchanging the first element with any random
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5641
"/    "/ element.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5642
"/    rnd := Random nextIntegerBetween:b and:e.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5643
"/    temp1 := self at:b. temp2 := self at:rnd.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5644
"/    self at:b put:temp2. self at:rnd put:temp1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5645
"/    aCollection notNil ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5646
"/        temp1 := aCollection at:b. temp2 := aCollection at:rnd.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5647
"/        aCollection at:b put:temp2. aCollection at:rnd put:temp1
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5648
"/    ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5649
"/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5650
"/    "/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5651
"/    "/ now proceed as usual
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5652
"/    "/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5653
"/    middleElement := self at:((b + e) // 2).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5654
"/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5655
"/    [b < e] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5656
"/        [b < end and:[sortBlock value:(self at:b) value:middleElement]] whileTrue:[b := b + 1].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5657
"/        [e > begin and:[sortBlock value:middleElement value:(self at:e)]] whileTrue:[e := e - 1].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5658
"/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5659
"/        (b <= e) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5660
"/            (b == e) ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5661
"/                temp1 := self at:b. temp2 := self at:e.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5662
"/                self at:b put:temp2. self at:e put:temp1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5663
"/                aCollection notNil ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5664
"/                    temp1 := aCollection at:b. temp2 := aCollection at:e.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5665
"/                    aCollection at:b put:temp2. aCollection at:e put:temp1
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5666
"/                ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5667
"/            ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5668
"/            b := b + 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5669
"/            e := e - 1
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5670
"/        ]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5671
"/    ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5672
"/    (begin < e) ifTrue:[self randomizedQuickSortFrom:begin to:e sortBlock:sortBlock with:aCollection].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5673
"/    (b < end) ifTrue:[self randomizedQuickSortFrom:b to:end sortBlock:sortBlock with:aCollection]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5674
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5675
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5676
randomizedQuickSortFrom:inBegin to:inEnd with:aCollection
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5677
    "actual randomizedQuicksort worker for randomizedSort:-message.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5678
     This exchanges a random element within the partition, to avoid
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5679
     the worst case O-square situation of quickSort.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5680
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5681
     Notice, that this method has a much worse best- and average case
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5682
     runTime, due to the random number generation.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5683
     The worst case of quickSort is encountered, if the choosen pivot
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5684
     element lies at either end of the partition, so that a split
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5685
     creates partitions of size 1 and (n-1).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5686
     Since the middle element is choosen, this worst case is very unlikely
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5687
     to be encountered."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5688
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5689
    <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5690
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5691
    self obsoleteMethodWarning:'use quickSortFrom:to:with:'.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5692
    "/ code was never used - use regular sort for backward compatibility
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5693
    ^ self quickSortFrom:inBegin to:inEnd with:aCollection
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5694
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5695
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5696
"/    |begin   "{ Class: SmallInteger }"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5697
"/     end     "{ Class: SmallInteger }"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5698
"/     b       "{ Class: SmallInteger }"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5699
"/     e       "{ Class: SmallInteger }"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5700
"/     rnd     "{ Class: SmallInteger }"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5701
"/     middleElement temp1 temp2 |
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5702
"/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5703
"/    begin := inBegin.   "/ this also does a type-check
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5704
"/    end := inEnd.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5705
"/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5706
"/    b := begin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5707
"/    e := end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5708
"/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5709
"/    "/ randomize that partition
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5710
"/    "/ by exchanging the first element with any random
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5711
"/    "/ element.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5712
"/    rnd := Random nextIntegerBetween:b and:e.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5713
"/    temp1 := self at:b. temp2 := self at:rnd.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5714
"/    self at:b put:temp2. self at:rnd put:temp1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5715
"/    aCollection notNil ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5716
"/        temp1 := aCollection at:b. temp2 := aCollection at:rnd.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5717
"/        aCollection at:b put:temp2. aCollection at:rnd put:temp1
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5718
"/    ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5719
"/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5720
"/    "/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5721
"/    "/ now proceed as usual
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5722
"/    "/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5723
"/    middleElement := self at:((b + e) // 2).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5724
"/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5725
"/    [b < e] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5726
"/        [b < end and:[(self at:b) < middleElement]] whileTrue:[b := b + 1].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5727
"/        [e > begin and:[middleElement < (self at:e)]] whileTrue:[e := e - 1].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5728
"/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5729
"/        (b <= e) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5730
"/            (b == e) ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5731
"/                temp1 := self at:b. temp2 := self at:e.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5732
"/                self at:b put:temp2. self at:e put:temp1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5733
"/                aCollection notNil ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5734
"/                    temp1 := aCollection at:b. temp2 := aCollection at:e.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5735
"/                    aCollection at:b put:temp2. aCollection at:e put:temp1
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5736
"/                ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5737
"/            ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5738
"/            b := b + 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5739
"/            e := e - 1
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5740
"/        ]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5741
"/    ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5742
"/    (begin < e) ifTrue:[self randomizedQuickSortFrom:begin to:e with:aCollection].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5743
"/    (b < end) ifTrue:[self randomizedQuickSortFrom:b to:end with:aCollection]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5744
"/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5745
"/    "Modified: 21.8.1997 / 18:30:19 / cg"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5746
"/    "Created: 21.8.1997 / 18:34:23 / cg"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5747
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5748
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5749
randomizedSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5750
    <resource: #obsolete>
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5751
    "sort the collection inplace. The elements are compared using
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5752
     '<' i.e. they should offer a magnitude-like protocol.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5753
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5754
     This uses the randomized quicksort algorithm,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5755
     which has a better worstCase behavior than quickSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5756
     (bit worse bestCase & averageCase behavior).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5757
     See: Knuth or Cormen,Leiserson,Rivest pg. 163"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5758
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5759
"/    |stop|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5760
"/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5761
"/    stop := self size.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5762
"/    (stop > 1) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5763
"/        self randomizedQuickSortFrom:1 to:stop sortBlock:[:a :b | a < b] with:nil
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5764
"/    ]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5765
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5766
    "/ code was never used - use regular sort for backward compatibility
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5767
    ^ self sort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5768
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5769
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5770
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5771
randomizedSort:sortBlock
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5772
    <resource: #obsolete>
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5773
    "sort the collection inplace using the 2-arg block sortBlock
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5774
     for comparison. This allows any sort criteria to be implemented.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5775
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5776
     This uses the randomized quicksort algorithm,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5777
     which has a better worstCase behavior than quickSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5778
     (bit worse bestCase & averageCase behavior).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5779
     See: Knuth or Cormen,Leiserson,Rivest pg. 163"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5780
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5781
"/    |stop|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5782
"/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5783
"/    stop := self size.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5784
"/    (stop > 1) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5785
"/        self randomizedQuickSortFrom:1 to:stop sortBlock:sortBlock with:nil
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5786
"/    ]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5787
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5788
    "/ code was never used - use regular sort for backward compatibility
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5789
    ^ self sort:sortBlock
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5790
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5791
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5792
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5793
randomizedSort:sortBlock with:aCollection
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5794
    <resource: #obsolete>
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5795
    "sort the collection inplace using the 2-arg block sortBlock
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5796
     for comparison. Also reorder the elements in aCollection.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5797
     Use this, when you have a key collection to sort some other collection with.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5798
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5799
     This uses the randomized quicksort algorithm,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5800
     which has a better worstCase behavior than quickSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5801
     (bit worse bestCase & averageCase behavior).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5802
     See: Knuth or Cormen,Leiserson,Rivest pg. 163"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5803
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5804
"/    |stop|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5805
"/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5806
"/    stop := self size.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5807
"/    (stop > 1) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5808
"/        self randomizedQuickSortFrom:1 to:stop sortBlock:sortBlock with:aCollection
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5809
"/    ]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5810
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5811
    "/ code was never used - use regular sort for backward compatibility
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5812
    ^ self sort:sortBlock with:aCollection
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5813
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5814
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5815
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5816
randomizedSortWith:aCollection
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5817
    <resource: #obsolete>
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5818
    "sort the receiver collection inplace, using '<' to compare elements.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5819
     Also, the elements of aCollection are reordered with it.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5820
     Use this, when you have a key collection to sort another collection with.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5821
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5822
     This uses the randomized quicksort algorithm,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5823
     which has a better worstCase behavior than quickSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5824
     (bit worse bestCase & averageCase behavior).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5825
     See: Knuth or Cormen,Leiserson,Rivest pg. 163"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5826
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5827
"/    |stop|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5828
"/
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5829
"/    stop := self size.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5830
"/    (stop > 1) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5831
"/        self randomizedQuickSortFrom:1 to:stop sortBlock:[:a :b | a < b] with:aCollection
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5832
"/    ]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5833
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5834
    "/ code was never used - use regular sort for backward compatibility
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5835
    ^ self sortWith:aCollection
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5836
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5837
! !
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  5838
5153
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5839
!SequenceableCollection methodsFor:'padded copying'!
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5840
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5841
leftPaddedTo:size with:padElement
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5842
    "return a new collection of length size, which contains the receiver
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5843
     right-adjusted (i.e. padded on the left).
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5844
     Elements on the left are filled with padElement.
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  5845
     If the receiver's size is equal or greater than the length argument,
5153
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5846
     the original receiver is returned unchanged."
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5847
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5848
    |len s|
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5849
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5850
    len := self size.
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5851
    (len < size) ifTrue:[
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  5852
        s := self species new:size withAll:padElement.
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  5853
        s replaceFrom:(size - len + 1) with:self.
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  5854
        ^ s
5153
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5855
    ]
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5856
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5857
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5858
     'foo' leftPaddedTo:10 with:$.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5859
     'fooBar' leftPaddedTo:5 with:$.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5860
     123 printString leftPaddedTo:10 with:$.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5861
     (' ' , 123 printString) leftPaddedTo:10 with:$.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5862
     (Float pi printString) leftPaddedTo:15 with:(Character space)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5863
     (Float pi printString) leftPaddedTo:15 with:$-
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5864
     (' ' , Float pi class name) leftPaddedTo:15 with:$.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5865
     #[1 2 3 4] leftPaddedTo:6 with:0
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5866
     #[1 2 3 4] leftPaddedTo:10 with:99
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5867
     #(1 2 3 4) leftPaddedTo:8 with:nil
5153
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5868
    "
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5869
!
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5870
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5871
paddedTo:newSize with:padElement
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5872
    "return a new collection consisting of the receivers elements,
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5873
     plus pad elements up to length.
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  5874
     If the receiver's size is equal or greater than the length argument,
5153
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5875
     the original receiver is returned unchanged."
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5876
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5877
    |s len|
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5878
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5879
    len := self size.
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5880
    len < newSize ifTrue:[
14613
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  5881
        s := self species new:newSize withAll:padElement.
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  5882
        s replaceFrom:1 to:len with:self.
a263aaa13092 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14610
diff changeset
  5883
        ^ s
5153
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5884
    ]
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5885
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5886
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5887
     'foo' paddedTo:10 with:$.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5888
     123 printString paddedTo:10 with:$*
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5889
     (Float pi printString) paddedTo:15 with:(Character space)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5890
     (Float pi printString) paddedTo:15 with:$-
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5891
     (Float pi class name , ' ') paddedTo:15 with:$.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5892
     #[1 2 3 4] paddedTo:6 with:0
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5893
     #[1 2 3 4] paddedTo:10 with:99
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5894
     #(1 2 3 4) paddedTo:8 with:nil
5153
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5895
    "
7116
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5896
!
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5897
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5898
paddedToMultipleOf:sizeModulu with:padElement
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5899
    |mySize mod numPad|
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5900
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5901
    mySize := self size.
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5902
    mod := (mySize \\ sizeModulu).
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5903
    mod == 0 ifTrue:[^ self].
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5904
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5905
    numPad := sizeModulu - mod.
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5906
    ^ self , (self species new:numPad withAll:padElement).
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5907
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5908
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5909
     #[] paddedToMultipleOf:3 with:0
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5910
     #[1] paddedToMultipleOf:3 with:0
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5911
     #[1 2] paddedToMultipleOf:3 with:0
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5912
     #[1 2 3] paddedToMultipleOf:3 with:0
7116
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5913
     #[1 2 3 4] paddedToMultipleOf:3 with:0
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5914
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5915
     #() paddedToMultipleOf:3 with:nil
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5916
     #(1) paddedToMultipleOf:3 with:nil
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5917
     #(1 2) paddedToMultipleOf:3 with:nil
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5918
     #(1 2 3) paddedToMultipleOf:3 with:nil
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5919
     #(1 2 3 4) paddedToMultipleOf:3 with:nil
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5920
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5921
     '' paddedToMultipleOf:3 with:Character space
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5922
     'a' paddedToMultipleOf:3 with:Character space
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5923
     'ab' paddedToMultipleOf:3 with:Character space
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5924
     'abc' paddedToMultipleOf:3 with:Character space
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5925
     'abcd' paddedToMultipleOf:3 with:Character space
4f99bb67b0fd +paddedToMultipleOf:with:
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
  5926
    "
5153
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5927
! !
dc159974af2b paddedCopy methods moved from CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5004
diff changeset
  5928
7260
edfa8d6a6046 method category rename
Claus Gittinger <cg@exept.de>
parents: 7255
diff changeset
  5929
!SequenceableCollection methodsFor:'private-sorting helpers'!
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  5930
14100
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5931
mergeFirst:first middle:middle last:last into:dst by:aBlock 
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  5932
    "Private!!
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  5933
     Merge the sorted ranges [first..middle] and [middle+1..last] of the receiver into the range [first..last] of dst."
14100
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5934
    
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5935
    |i1 i2 val1 val2 out|
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  5936
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  5937
    i1 := first.
14100
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5938
    out := first.
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  5939
    i2 := middle + 1.
14100
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5940
    val1 := self at:i1.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5941
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5942
    i2 <= last ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5943
        val2 := self at:i2.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5944
        "select 'lower' half of the elements based on comparator"
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5945
        [(i1 <= middle) and:[i2 <= last]] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5946
            "this is stable if #< or #> ist used for comparison (and not #<= or #>=)"
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5947
            (aBlock value:val2 value:val1) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5948
                dst at:out put:val2.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5949
                i2 := i2 + 1.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5950
                i2 <= last ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5951
                    val2 := self at:i2
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5952
                ]
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5953
            ] ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5954
                dst at:out put:val1.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5955
                i1 := i1 + 1.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5956
                val1 := self at:i1.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5957
            ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5958
            out := out + 1.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5959
        ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5960
    ].
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  5961
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  5962
    "copy the remaining elements"
14100
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5963
    i1 <= middle ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5964
        dst 
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5965
            replaceFrom:out
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5966
            to:last
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5967
            with:self
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5968
            startingAt:i1
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5969
    ] ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5970
        dst 
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5971
            replaceFrom:out
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5972
            to:last
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5973
            with:self
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5974
            startingAt:i2
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5975
    ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5976
!
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5977
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5978
mergeSortFrom: first to: last by: aBlock
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  5979
    "Private!! Split the range to be sorted in half, sort each half, and merge the two half-ranges into dst."
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  5980
14100
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5981
    |size chunkSize idx nextIdx finished temp src dst|
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5982
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5983
    size := last-first + 1.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5984
    size <= 1 ifTrue:[^ self].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5985
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5986
    "size of the base chunks"
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5987
    chunkSize := 12.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5988
    idx := first.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5989
    finished := false.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5990
    [finished] whileFalse:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5991
        nextIdx := idx + chunkSize.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5992
        nextIdx > last ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5993
            nextIdx := last+1.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5994
            finished := true.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5995
        ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5996
        self insertionSort:aBlock from:idx to:nextIdx-1.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5997
        idx := nextIdx.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5998
    ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  5999
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6000
    chunkSize < size ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6001
        "now merge the chunks"
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6002
        dst := Array new:self size.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6003
        src := self.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6004
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6005
        [chunkSize < size] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6006
            "merge pairs of adjecant chunks"
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6007
            idx := first.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6008
            finished := false.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6009
            [finished] whileFalse:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6010
                nextIdx := idx + (2*chunkSize).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6011
                nextIdx > last ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6012
                    nextIdx := last+1.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6013
                    finished := true.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6014
                ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6015
                src
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6016
                    mergeFirst:idx 
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6017
                    middle:idx+chunkSize-1 
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6018
                    last:nextIdx-1 
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6019
                    into:dst
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6020
                    by:aBlock.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6021
                idx := nextIdx.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6022
            ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6023
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6024
            chunkSize := chunkSize * 2.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6025
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6026
            "merged chunks are in dst. Swap source and destination for next step"
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6027
            temp := dst.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6028
            dst := src.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6029
            src := temp.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6030
        ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6031
        "note, the latest dst is now src (see above)"
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6032
        src ~~ self ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6033
            self replaceFrom:first to:last with:src startingAt:first.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6034
        ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  6035
    ].
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6036
!
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6037
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  6038
quickSortFrom:inBegin to:inEnd
6919
08fbf325f789 changed all quickSort methods to a simulated recursive
Claus Gittinger <cg@exept.de>
parents: 6868
diff changeset
  6039
    "actual quicksort worker for sort-message.
08fbf325f789 changed all quickSort methods to a simulated recursive
Claus Gittinger <cg@exept.de>
parents: 6868
diff changeset
  6040
     Simulates recursion in a stack, to avoid recursion overflow
8180
7c346c8015f2 Only use #> for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8099
diff changeset
  6041
     with degenerated collections.
7c346c8015f2 Only use #> for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8099
diff changeset
  6042
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6043
     The algorithm has been extended to introSort, which is quickSort with fallBack
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6044
     when we find out, that we have a worst case quick sort with O(n*n).
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6045
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6046
     Use #< for element comparisons, since this is the (fastest) base
8183
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  6047
     method in Magnitude, and the others may be defined by sending #<."
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  6048
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  6049
    |begin   "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  6050
     end     "{ Class: SmallInteger }"
5605
7795fe0fb8e8 changed quickSort to be stable with '<=' compare as sortBlock.
Claus Gittinger <cg@exept.de>
parents: 5575
diff changeset
  6051
     bRun    "{ Class: SmallInteger }"
7795fe0fb8e8 changed quickSort to be stable with '<=' compare as sortBlock.
Claus Gittinger <cg@exept.de>
parents: 5575
diff changeset
  6052
     eRun    "{ Class: SmallInteger }"
7795fe0fb8e8 changed quickSort to be stable with '<=' compare as sortBlock.
Claus Gittinger <cg@exept.de>
parents: 5575
diff changeset
  6053
     m       "{ Class: SmallInteger }"
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6054
     prevIdx "{ Class: SmallInteger }"
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6055
     elB elM elE temp stack depthLimit|
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6056
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6057
    inEnd <= inBegin ifTrue:[
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6058
        "nothing to sort"
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6059
        ^ self.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6060
    ].
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6061
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6062
    depthLimit := (1 + inEnd-inBegin) integerLog2 * 2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6063
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6064
    stack := OrderedCollection new:depthLimit*2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6065
    begin := inBegin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6066
    end := inEnd.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6067
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6068
    [true] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6069
        "do not sort small chunks,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6070
         instead do an insertion sort over the whole range at the end, which is faster"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6071
        end - begin > 12 ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6072
            "ok, her we do the real quickSort..."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6073
            depthLimit <= 0 ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6074
                "this is apparently a degenerated quickSort 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6075
                 - abort the quicksort and fall back to heapSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6076
                 which has O(n * log n) complexity in the worst case"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6077
                self heapSortFrom:begin to:end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6078
                begin := end+1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6079
            ] ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6080
                elB := self at:begin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6081
                elE := self at:end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6082
                m := (begin + end) // 2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6083
                elM := self at:m.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6084
                "take the median of three as pivot (elM)"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6085
                (elM < elB) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6086
                    temp := self at:begin put:elM.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6087
                    elM := self at:m put:elB.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6088
                    elB := temp.
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6089
                ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6090
                (elE < elB) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6091
                    self at:begin put:elE.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6092
                    elE := self at:end put:elB.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6093
                ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6094
                (elE < elM) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6095
                    self at:end put:elM.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6096
                    elM := self at:m put:elE.
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6097
                ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6098
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6099
                bRun := begin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6100
                eRun := end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6101
                "use simple expressions without additional statements in whileXXX: conditions,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6102
                 so STC can optimize"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6103
                [bRun < eRun] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6104
                     [(bRun := bRun+1) <= eRun and:[(self at:bRun) < elM]] whileTrue.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6105
                     [bRun <= (eRun := eRun-1) and:[elM < (self at:eRun)]] whileTrue.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6106
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6107
                     (bRun < eRun) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6108
                         temp := self at:bRun.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6109
                         self at:bRun put:(self at:eRun). 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6110
                         self at:eRun put:temp.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6111
                     ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6112
                 ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6113
                 (bRun < end) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6114
                     "remember right part for later processing"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6115
                     stack add:end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6116
                     stack add:depthLimit-1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6117
                 ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6118
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6119
                "now sort the left part from begin .. new end"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6120
                depthLimit := depthLimit - 1.      
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6121
                end := eRun.                
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6122
            ].
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6123
        ] ifFalse:[
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6124
            stack isEmpty ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6125
                "we are done.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6126
                 Do a final insertion sort over all the elements,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6127
                 to eventually sort the small, unsorted chunks"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6128
                begin := inBegin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6129
                bRun := begin + 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6130
                end := inEnd.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6131
                bRun to:end do:[:idx|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6132
                    temp := self at:idx.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6133
                    prevIdx := idx-1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6134
                    [prevIdx >= begin and:[temp < (self at:prevIdx)]] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6135
                        self at:prevIdx+1 put:(self at:prevIdx).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6136
                        prevIdx := prevIdx - 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6137
                    ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6138
                    (prevIdx+1) ~~ idx ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6139
                        self at:prevIdx+1 put:temp.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6140
                    ].
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6141
                ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6142
                ^ self
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6143
            ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6144
            begin := end + 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6145
            depthLimit := stack removeLast.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6146
            end := stack removeLast.
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6147
        ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6148
    ].
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  6149
!
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  6150
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6151
quickSortFrom:inBegin to:inEnd sortBlock:sortBlock
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6152
    "actual quicksort worker for sort-message.
6919
08fbf325f789 changed all quickSort methods to a simulated recursive
Claus Gittinger <cg@exept.de>
parents: 6868
diff changeset
  6153
     Simulates recursion in a stack, to avoid recursion overflow
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6154
     with degenerated collections.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6155
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6156
     The algorithm has been extended to introSort, which is quickSort with fallBack
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6157
     when we find out, that we have a worst case quick sort with O(n*n).
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6158
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6159
     Use sortBlock for element comparisons."
3055
0832fba4c740 support 3-arg sort, passing a collationPolicy
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6160
0832fba4c740 support 3-arg sort, passing a collationPolicy
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6161
    |begin   "{ Class: SmallInteger }"
0832fba4c740 support 3-arg sort, passing a collationPolicy
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6162
     end     "{ Class: SmallInteger }"
5605
7795fe0fb8e8 changed quickSort to be stable with '<=' compare as sortBlock.
Claus Gittinger <cg@exept.de>
parents: 5575
diff changeset
  6163
     bRun    "{ Class: SmallInteger }"
7795fe0fb8e8 changed quickSort to be stable with '<=' compare as sortBlock.
Claus Gittinger <cg@exept.de>
parents: 5575
diff changeset
  6164
     eRun    "{ Class: SmallInteger }"
7795fe0fb8e8 changed quickSort to be stable with '<=' compare as sortBlock.
Claus Gittinger <cg@exept.de>
parents: 5575
diff changeset
  6165
     m       "{ Class: SmallInteger }"
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6166
     prevIdx "{ Class: SmallInteger }"
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6167
     elB elM elE temp stack depthLimit|
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6168
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6169
    inEnd <= inBegin ifTrue:[
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6170
        "nothing to sort"
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6171
        ^ self.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6172
    ].
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6173
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6174
    depthLimit := (1 + inEnd-inBegin) integerLog2 * 2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6175
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6176
    stack := OrderedCollection new:depthLimit*2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6177
    begin := inBegin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6178
    end := inEnd.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6179
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6180
    [true] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6181
        "do not sort small chunks,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6182
         instead do an insertion sort over the whole range at the end, which is faster"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6183
        end - begin > 12 ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6184
            "ok, her we do the real quickSort..."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6185
            depthLimit <= 0 ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6186
                "this is apparently a degenerated quickSort 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6187
                 - abort the quicksort and fall back to heapSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6188
                 which has O(n * log n) complexity in the worst case"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6189
                self heapSort:sortBlock from:begin to:end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6190
                begin := end+1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6191
            ] ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6192
                elB := self at:begin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6193
                elE := self at:end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6194
                m := (begin + end) // 2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6195
                elM := self at:m.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6196
                "take the median of three as pivot (elM)"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6197
                (sortBlock value:elM value:elB) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6198
                    temp := self at:begin put:elM.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6199
                    elM := self at:m put:elB.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6200
                    elB := temp.
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6201
                ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6202
                (sortBlock value:elE value:elB) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6203
                    self at:begin put:elE.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6204
                    elE := self at:end put:elB.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6205
                ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6206
                (sortBlock value:elE value:elM) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6207
                    self at:end put:elM.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6208
                    elM := self at:m put:elE.
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6209
                ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6210
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6211
                bRun := begin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6212
                eRun := end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6213
                "use simple expressions without additional statements in whileXXX: conditions,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6214
                 so STC can optimize"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6215
                [bRun < eRun] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6216
                     [(bRun := bRun+1) <= eRun and:[sortBlock value:(self at:bRun) value:elM]] whileTrue.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6217
                     [bRun <= (eRun := eRun-1) and:[sortBlock value:elM value:(self at:eRun)]] whileTrue.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6218
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6219
                     (bRun < eRun) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6220
                         temp := self at:bRun.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6221
                         self at:bRun put:(self at:eRun). 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6222
                         self at:eRun put:temp.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6223
                     ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6224
                 ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6225
                 (bRun < end) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6226
                     "remember right part for later processing"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6227
                     stack add:end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6228
                     stack add:depthLimit-1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6229
                 ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6230
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6231
                "now sort the left part from begin .. new end"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6232
                depthLimit := depthLimit - 1.      
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6233
                end := eRun.                
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6234
            ]
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6235
        ] ifFalse:[
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6236
            stack isEmpty ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6237
                "we are done.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6238
                 Do a final insertion sort over all the elements,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6239
                 to eventually sort the small, unsorted chunks"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6240
                begin := inBegin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6241
                bRun := begin + 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6242
                end := inEnd.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6243
                bRun to:end do:[:idx|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6244
                    temp := self at:idx.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6245
                    prevIdx := idx-1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6246
                    [prevIdx >= begin and:[sortBlock value:temp value:(self at:prevIdx)]] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6247
                        self at:prevIdx+1 put:(self at:prevIdx).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6248
                        prevIdx := prevIdx - 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6249
                    ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6250
                    (prevIdx+1) ~~ idx ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6251
                        self at:prevIdx+1 put:temp.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6252
                    ].
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6253
                ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6254
                ^ self
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6255
            ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6256
            begin := end + 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6257
            depthLimit := stack removeLast.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6258
            end := stack removeLast.
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6259
        ].
5605
7795fe0fb8e8 changed quickSort to be stable with '<=' compare as sortBlock.
Claus Gittinger <cg@exept.de>
parents: 5575
diff changeset
  6260
    ]
3055
0832fba4c740 support 3-arg sort, passing a collationPolicy
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6261
!
0832fba4c740 support 3-arg sort, passing a collationPolicy
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6262
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6263
quickSortFrom:inBegin to:inEnd sortBlock:sortBlock policy:policy
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6264
    "actual quicksort worker for sort-message.
6919
08fbf325f789 changed all quickSort methods to a simulated recursive
Claus Gittinger <cg@exept.de>
parents: 6868
diff changeset
  6265
     Simulates recursion in a stack, to avoid recursion overflow
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6266
     with degenerated collections.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6267
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6268
     Use sortBlock for element comparisons."
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  6269
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  6270
    |begin   "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  6271
     end     "{ Class: SmallInteger }"
5605
7795fe0fb8e8 changed quickSort to be stable with '<=' compare as sortBlock.
Claus Gittinger <cg@exept.de>
parents: 5575
diff changeset
  6272
     bRun    "{ Class: SmallInteger }"
7795fe0fb8e8 changed quickSort to be stable with '<=' compare as sortBlock.
Claus Gittinger <cg@exept.de>
parents: 5575
diff changeset
  6273
     eRun    "{ Class: SmallInteger }"
7795fe0fb8e8 changed quickSort to be stable with '<=' compare as sortBlock.
Claus Gittinger <cg@exept.de>
parents: 5575
diff changeset
  6274
     m       "{ Class: SmallInteger }"
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6275
     prevIdx "{ Class: SmallInteger }"
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6276
     elB elM elE temp stack depthLimit policySortBlock|
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6277
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6278
    inEnd <= inBegin ifTrue:[
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6279
        "nothing to sort"
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6280
        ^ self.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6281
    ].
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6282
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6283
    depthLimit := (1 + inEnd-inBegin) integerLog2 * 2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6284
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6285
    stack := OrderedCollection new:depthLimit*2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6286
    begin := inBegin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6287
    end := inEnd.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6288
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6289
    [true] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6290
        "do not sort small chunks,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6291
         instead do an insertion sort over the whole range at the end, which is faster"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6292
        end - begin > 12 ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6293
            "ok, her we do the real quickSort..."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6294
            depthLimit <= 0 ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6295
                "this is apparently a degenerated quickSort 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6296
                 - abort the quicksort and fall back to heapSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6297
                 which has O(n * log n) complexity in the worst case"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6298
                policySortBlock := [:arg1 :arg2| sortBlock value:policy value:arg1 value:arg2].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6299
                self heapSort:policySortBlock from:begin to:end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6300
                begin := end+1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6301
            ] ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6302
               elB := self at:begin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6303
               elE := self at:end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6304
               m := (begin + end) // 2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6305
               elM := self at:m.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6306
               "take the median of three as pivot (elM)"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6307
               (sortBlock value:policy value:elM value:elB) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6308
                   temp := self at:begin put:elM.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6309
                   elM := self at:m put:elB.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6310
                   elB := temp.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6311
               ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6312
               (sortBlock value:policy value:elE value:elB) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6313
                   self at:begin put:elE.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6314
                   elE := self at:end put:elB.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6315
               ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6316
               (sortBlock value:policy value:elE value:elM) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6317
                   self at:end put:elM.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6318
                   elM := self at:m put:elE.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6319
               ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6320
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6321
               bRun := begin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6322
               eRun := end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6323
               "use simple expressions without additional statements in whileXXX: conditions,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6324
                so STC can optimize"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6325
               [bRun < eRun] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6326
                    [(bRun := bRun+1) <= eRun and:[sortBlock value:policy value:(self at:bRun) value:elM]] whileTrue.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6327
                    [bRun <= (eRun := eRun-1) and:[sortBlock value:policy value:elM value:(self at:eRun)]] whileTrue.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6328
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6329
                    (bRun < eRun) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6330
                        temp := self at:bRun.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6331
                        self at:bRun put:(self at:eRun). 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6332
                        self at:eRun put:temp.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6333
                    ].
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6334
                ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6335
                 (bRun < end) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6336
                     "remember right part for later processing"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6337
                     stack add:end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6338
                     stack add:depthLimit-1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6339
                 ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6340
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6341
                "now sort the left part from begin .. new end"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6342
                depthLimit := depthLimit - 1.      
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6343
                end := eRun.                
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6344
            ].
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6345
        ] ifFalse:[
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6346
            stack isEmpty ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6347
                "we are done.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6348
                 Do a final insertion sort over all the elements,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6349
                 to eventually sort the small, unsorted chunks"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6350
                begin := inBegin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6351
                bRun := begin + 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6352
                end := inEnd.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6353
                bRun to:end do:[:idx|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6354
                    temp := self at:idx.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6355
                    prevIdx := idx-1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6356
                    [prevIdx >= begin and:[sortBlock value:policy value:temp value:(self at:prevIdx)]] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6357
                        self at:prevIdx+1 put:(self at:prevIdx).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6358
                        prevIdx := prevIdx - 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6359
                    ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6360
                    (prevIdx+1) ~~ idx ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6361
                        self at:prevIdx+1 put:temp.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6362
                    ].
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6363
                ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6364
                ^ self
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6365
            ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6366
            begin := end + 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6367
            depthLimit := stack removeLast.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6368
            end := stack removeLast.
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6369
        ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6370
    ].
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6371
!
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6372
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6373
quickSortFrom:inBegin to:inEnd sortBlock:sortBlock with:aCollection
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6374
    "actual quicksort worker for sort-message.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6375
     Simulates recursion in a stack, to avoid recursion overflow
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6376
     with degenerated collections.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6377
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6378
     Use sortBlock for element comparisons."
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6379
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6380
    |begin   "{ Class: SmallInteger }"
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6381
     end     "{ Class: SmallInteger }"
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6382
     bRun    "{ Class: SmallInteger }"
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6383
     eRun    "{ Class: SmallInteger }"
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6384
     m       "{ Class: SmallInteger }"
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6385
     prevIdx "{ Class: SmallInteger }"
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6386
     elB elM elE temp temp1 stack depthLimit|
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6387
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6388
    inEnd <= inBegin ifTrue:[
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6389
        "nothing to sort"
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6390
        ^ self.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6391
    ].
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6392
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6393
    depthLimit := (1 + inEnd-inBegin) integerLog2 * 2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6394
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6395
    stack := OrderedCollection new:depthLimit*2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6396
    begin := inBegin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6397
    end := inEnd.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6398
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6399
    [true] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6400
        "do not sort small chunks,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6401
         instead do an insertion sort over the whole range at the end, which is faster"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6402
        end - begin > 12 ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6403
            "ok, her we do the real quickSort..."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6404
            "/ heapSort does not support ...with: yet
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6405
            "depthLimit <= 0" false ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6406
                "this is apparently a degenerated quickSort 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6407
                 - abort the quicksort and fall back to heapSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6408
                 which has O(n * log n) complexity in the worst case"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6409
                self heapSort:sortBlock from:begin to:end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6410
                begin := end+1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6411
            ] ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6412
                elB := self at:begin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6413
                elE := self at:end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6414
                m := (begin + end) // 2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6415
                elM := self at:m.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6416
                "take the median of three as pivot (elM)"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6417
                (sortBlock value:elM value:elB) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6418
                    temp := self at:begin put:elM.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6419
                    elM := self at:m put:elB.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6420
                    elB := temp.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6421
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6422
                    temp := aCollection at:begin.  
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6423
                    aCollection at:begin put:(aCollection at:m).  
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6424
                    aCollection at:m put:temp.  
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6425
                ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6426
                (sortBlock value:elE value:elB) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6427
                    self at:begin put:elE.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6428
                    elE := self at:end put:elB.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6429
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6430
                    temp := aCollection at:end.  
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6431
                    aCollection at:end put:(aCollection at:begin).  
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6432
                    aCollection at:begin put:temp. 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6433
                ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6434
                (sortBlock value:elE value:elM) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6435
                    self at:end put:elM.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6436
                    elM := self at:m put:elE.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6437
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6438
                    temp := aCollection at:end.  
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6439
                    aCollection at:end put:(aCollection at:m).  
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6440
                    aCollection at:m put:temp.  
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6441
                ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6442
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6443
                bRun := begin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6444
                eRun := end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6445
                "use simple expressions without additional statements in whileXXX: conditions,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6446
                 so STC can optimize"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6447
                [bRun < eRun] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6448
                     [(bRun := bRun+1) <= eRun and:[sortBlock value:(self at:bRun) value:elM]] whileTrue.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6449
                     [bRun <= (eRun := eRun-1) and:[sortBlock value:elM value:(self at:eRun)]] whileTrue.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6450
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6451
                     (bRun < eRun) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6452
                         temp := self at:bRun.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6453
                         self at:bRun put:(self at:eRun). 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6454
                         self at:eRun put:temp.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6455
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6456
                         temp := aCollection at:bRun.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6457
                         aCollection at:bRun put:(aCollection at:eRun).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6458
                         aCollection at:eRun put:temp.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6459
                     ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6460
                 ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6461
                 (bRun < end) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6462
                     "remember right part for later processing"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6463
                     stack add:end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6464
                     stack add:depthLimit-1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6465
                 ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6466
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6467
                "now sort the left part from begin .. new end"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6468
                depthLimit := depthLimit - 1.      
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6469
                end := eRun.                
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6470
            ]
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6471
        ] ifFalse:[
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6472
            stack isEmpty ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6473
                "we are done.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6474
                 Do a final insertion sort over all the elements,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6475
                 to eventually sort the small, unsorted chunks"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6476
                begin := inBegin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6477
                bRun := begin + 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6478
                end := inEnd.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6479
                bRun to:end do:[:idx|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6480
                    temp := self at:idx.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6481
                    temp1 := aCollection at:idx.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6482
                    prevIdx := idx-1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6483
                    [prevIdx >= begin and:[sortBlock value:temp value:(self at:prevIdx)]] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6484
                        self at:prevIdx+1 put:(self at:prevIdx).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6485
                        aCollection at:prevIdx+1 put:(aCollection at:prevIdx).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6486
                        prevIdx := prevIdx - 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6487
                    ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6488
                    (prevIdx+1) ~~ idx ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6489
                        self at:prevIdx+1 put:temp.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6490
                        aCollection at:prevIdx+1 put:temp1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6491
                    ].
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6492
                ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6493
                ^ self
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6494
            ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6495
            begin := end + 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6496
            depthLimit := stack removeLast.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6497
            end := stack removeLast.
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6498
        ].
5605
7795fe0fb8e8 changed quickSort to be stable with '<=' compare as sortBlock.
Claus Gittinger <cg@exept.de>
parents: 5575
diff changeset
  6499
    ]
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  6500
!
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  6501
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  6502
quickSortFrom:inBegin to:inEnd with:aCollection
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6503
    "actual quicksort worker for sort-message.
6919
08fbf325f789 changed all quickSort methods to a simulated recursive
Claus Gittinger <cg@exept.de>
parents: 6868
diff changeset
  6504
     Simulates recursion in a stack, to avoid recursion overflow
8180
7c346c8015f2 Only use #> for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8099
diff changeset
  6505
     with degenerated collections.
7c346c8015f2 Only use #> for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8099
diff changeset
  6506
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6507
     Use #< for element comparisons, since this is the (fastest) base
8183
93f8b0cc734f Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8180
diff changeset
  6508
     method in Magnitude, and the others may be defined by sending #<."
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  6509
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  6510
    |begin   "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  6511
     end     "{ Class: SmallInteger }"
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6512
     bRun    "{ Class: SmallInteger }"
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6513
     eRun    "{ Class: SmallInteger }"
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6514
     m       "{ Class: SmallInteger }"
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6515
     prevIdx "{ Class: SmallInteger }"
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6516
     elB elM elE temp temp1 stack depthLimit|
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6517
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6518
    inEnd <= inBegin ifTrue:[
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6519
        "nothing to sort"
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6520
        ^ self.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6521
    ].
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6522
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6523
    depthLimit := (1 + inEnd-inBegin) integerLog2 * 2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6524
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6525
    stack := OrderedCollection new:depthLimit*2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6526
    begin := inBegin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6527
    end := inEnd.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6528
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6529
    [true] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6530
        "do not sort small chunks,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6531
         instead do an insertion sort over the whole range at the end, which is faster"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6532
        end - begin > 12 ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6533
            "ok, her we do the real quickSort..."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6534
            "/ heapSort does not support ...with: yet
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6535
            "depthLimit <= 0" false ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6536
                "this is apparently a degenerated quickSort 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6537
                 - abort the quicksort and fall back to heapSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6538
                 which has O(n * log n) complexity in the worst case"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6539
                self heapSortFrom:begin to:end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6540
                begin := end+1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6541
            ] ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6542
                elB := self at:begin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6543
                elE := self at:end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6544
                m := (begin + end) // 2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6545
                elM := self at:m.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6546
                "take the median of three as pivot (elM)"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6547
                (elM < elB) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6548
                    temp := self at:begin put:elM.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6549
                    elM := self at:m put:elB.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6550
                    elB := temp.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6551
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6552
                    temp := aCollection at:begin.  
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6553
                    aCollection at:begin put:(aCollection at:m).  
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6554
                    aCollection at:m put:temp.  
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6555
                ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6556
                (elE < elB) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6557
                    self at:begin put:elE.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6558
                    elE := self at:end put:elB.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6559
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6560
                    temp := aCollection at:end.  
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6561
                    aCollection at:end put:(aCollection at:begin).  
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6562
                    aCollection at:begin put:temp. 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6563
                ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6564
                (elE < elM) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6565
                    self at:end put:elM.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6566
                    elM := self at:m put:elE.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6567
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6568
                    temp := aCollection at:end.  
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6569
                    aCollection at:end put:(aCollection at:m).  
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6570
                    aCollection at:m put:temp.  
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6571
                ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6572
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6573
                bRun := begin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6574
                eRun := end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6575
                "use simple expressions without additional statements in whileXXX: conditions,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6576
                 so STC can optimize"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6577
                [bRun < eRun] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6578
                     [(bRun := bRun+1) <= eRun and:[(self at:bRun) < elM]] whileTrue.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6579
                     [bRun <= (eRun := eRun-1) and:[elM < (self at:eRun)]] whileTrue.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6580
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6581
                     (bRun < eRun) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6582
                         temp := self at:bRun.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6583
                         self at:bRun put:(self at:eRun). 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6584
                         self at:eRun put:temp.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6585
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6586
                         temp := aCollection at:bRun.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6587
                         aCollection at:bRun put:(aCollection at:eRun).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6588
                         aCollection at:eRun put:temp.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6589
                     ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6590
                 ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6591
                 (bRun < end) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6592
                     "remember right part for later processing"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6593
                     stack add:end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6594
                     stack add:depthLimit-1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6595
                 ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6596
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6597
                "now sort the left part from begin .. new end"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6598
                depthLimit := depthLimit - 1.      
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6599
                end := eRun.                
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6600
            ]
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6601
        ] ifFalse:[
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6602
            stack isEmpty ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6603
                "we are done.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6604
                 Do a final insertion sort over all the elements,
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6605
                 to eventually sort the small, unsorted chunks"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6606
                begin := inBegin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6607
                bRun := begin + 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6608
                end := inEnd.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6609
                bRun to:end do:[:idx|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6610
                    temp := self at:idx.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6611
                    temp1 := aCollection at:idx.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6612
                    prevIdx := idx-1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6613
                    [prevIdx >= begin and:[temp < (self at:prevIdx)]] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6614
                        self at:prevIdx+1 put:(self at:prevIdx).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6615
                        aCollection at:prevIdx+1 put:(aCollection at:prevIdx).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6616
                        prevIdx := prevIdx - 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6617
                    ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6618
                    (prevIdx+1) ~~ idx ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6619
                        self at:prevIdx+1 put:temp.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6620
                        aCollection at:prevIdx+1 put:temp1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6621
                    ].
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6622
                ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6623
                ^ self
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6624
            ].
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6625
            begin := end + 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6626
            depthLimit := stack removeLast.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  6627
            end := stack removeLast.
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  6628
        ].
6919
08fbf325f789 changed all quickSort methods to a simulated recursive
Claus Gittinger <cg@exept.de>
parents: 6868
diff changeset
  6629
    ]
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  6630
! !
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  6631
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6632
!SequenceableCollection methodsFor:'queries'!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6633
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6634
firstIndex
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6635
    "return the first elements index"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6636
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6637
    ^ 1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6638
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6639
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6640
isSequenceable
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6641
    "return true, if the receiver is some kind of sequenceableCollection"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6642
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6643
    ^ true
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6644
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6645
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6646
isSequenceableCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6647
    "OBSOLETE: use isSequenceable for ST-80 compatibility.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6648
     This method is a historic leftover and will be removed."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6649
5872
240f458c3f82 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5850
diff changeset
  6650
    <resource:#obsolete>
240f458c3f82 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5850
diff changeset
  6651
3435
04c06b559fa6 isSequenceableCollection is now obsolete;
Claus Gittinger <cg@exept.de>
parents: 3408
diff changeset
  6652
    self obsoleteMethodWarning:'use #isSequenceable'.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6653
    ^ true
3435
04c06b559fa6 isSequenceableCollection is now obsolete;
Claus Gittinger <cg@exept.de>
parents: 3408
diff changeset
  6654
04c06b559fa6 isSequenceableCollection is now obsolete;
Claus Gittinger <cg@exept.de>
parents: 3408
diff changeset
  6655
    "Modified: / 8.5.1998 / 21:27:18 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6656
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6657
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6658
isSorted
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6659
    "return true. if my elements are sorted (already)"
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6660
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6661
    |lastEl el|
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6662
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6663
    lastEl := self first.
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6664
    2 to:self size do:[:i |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6665
	el := self at:i.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6666
	el >= lastEl ifFalse: [^ false].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6667
	lastEl := el
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6668
    ].
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6669
    ^ true
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6670
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6671
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6672
     #(1 2 3 5 10 100) isSorted
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6673
     #(1 2 3 5 100 10) isSorted
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6674
    "
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6675
!
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6676
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6677
isSortedBy:aBlock
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6678
    "return true, if my elements are sorted (already) by the given criterion (sortBlock)"
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6679
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6680
    |lastEl el|
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6681
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6682
    lastEl := self first.
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6683
    2 to:self size do:[:i |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6684
	el := self at:i.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6685
	(aBlock value:lastEl value:el) ifFalse: [^ false].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6686
	lastEl := el
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6687
    ].
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6688
    ^ true
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6689
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6690
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6691
     #(1 2 3 5 10 100) isSortedBy:[:a :b | a <= b]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6692
     #(1 2 3 5 100 10) isSortedBy:[:a :b | a <= b]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6693
     #(100 10 5 3 2 1) isSortedBy:[:a :b | a <= b]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6694
     #(100 10 5 3 2 1) isSortedBy:[:a :b | a > b]
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6695
    "
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6696
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6697
!
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  6698
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6699
keys
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6700
    "return a collection with all keys in the Smalltalk dictionary"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6701
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6702
    |sz|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6703
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6704
    sz := self size.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6705
    sz == 0 ifTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6706
	^ #()
61
claus
parents: 44
diff changeset
  6707
    ].
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6708
    ^ 1 to:sz
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6709
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6710
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6711
lastIndex
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6712
    "return the last elements index"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6713
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6714
    ^ self size
61
claus
parents: 44
diff changeset
  6715
!
claus
parents: 44
diff changeset
  6716
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6717
size
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6718
    "return the number of elements in the collection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6719
     concrete implementations must define this"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6720
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6721
    ^ self subclassResponsibility
2165
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  6722
!
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  6723
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  6724
zeroIndex
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  6725
    "return the index value which is returned when nothing
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  6726
     is found in an indexOf* kind of search.
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  6727
     ST-compatibility"
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  6728
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  6729
    ^ 0
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  6730
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  6731
    "Created: 14.2.1997 / 16:13:03 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6732
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6733
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6734
!SequenceableCollection methodsFor:'searching'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6735
3887
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6736
detect:aBlock startingAt:startIndex
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6737
    "find the first element, for which evaluation of the argument, aBlock
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6738
     return true, starting the search with startIndex.
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6739
     If none does so, report an error"
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6740
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6741
    ^ self detect:aBlock startingAt:startIndex ifNone:[self errorNotFound]
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6742
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6743
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6744
     #(11 12 13 14) detect:[:n | n odd] startingAt:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6745
     #(12 14 16 18) detect:[:n | n odd] startingAt:3
3887
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6746
    "
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6747
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6748
    "Created: / 21.10.1998 / 18:47:28 / cg"
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6749
!
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6750
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6751
detect:aBlock startingAt:startIndex ifNone:exceptionBlock
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6752
    "find the first element, for which evaluation of the argument, aBlock
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6753
     return true, starting the search with startIndex.
5717
99b744e180f6 no need to redefine detect:ifNone:
ca
parents: 5650
diff changeset
  6754
     If none does so, return the evaluation of exceptionBlock"
99b744e180f6 no need to redefine detect:ifNone:
ca
parents: 5650
diff changeset
  6755
99b744e180f6 no need to redefine detect:ifNone:
ca
parents: 5650
diff changeset
  6756
    |stop|
3887
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6757
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6758
    stop := self size.
5717
99b744e180f6 no need to redefine detect:ifNone:
ca
parents: 5650
diff changeset
  6759
    self from:startIndex to:stop do:[:el |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6760
	(aBlock value:el) ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6761
	    ^ el
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6762
	].
3887
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6763
    ].
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6764
    ^ exceptionBlock value
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6765
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6766
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6767
     #(11 12 13 14) detect:[:n | n odd] startingAt:3 ifNone:['sorry']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6768
     #(12 14 16 18) detect:[:n | n odd] startingAt:3 ifNone:['sorry']
3887
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6769
    "
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6770
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6771
    "Created: / 21.10.1998 / 18:46:01 / cg"
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6772
!
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6773
11705
e517db0ccec8 findFirst - refactored
Claus Gittinger <cg@exept.de>
parents: 11463
diff changeset
  6774
findFirst:aBlock ifNone:exceptionalValue
10453
107b33e0ece6 comment
Claus Gittinger <cg@exept.de>
parents: 10439
diff changeset
  6775
    "find the index of the first element, for which evaluation of the argument, aBlock
11705
e517db0ccec8 findFirst - refactored
Claus Gittinger <cg@exept.de>
parents: 11463
diff changeset
  6776
     returns true; return its index or the value from exceptionalValue if none detected.
3887
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6777
     This is much like #detect, however, here an INDEX is returned,
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6778
     while #detect returns the element."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6779
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6780
    |stop  "{ Class: SmallInteger }" |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6781
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  6782
    stop := self size.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6783
    1 to:stop do:[:index |
10453
107b33e0ece6 comment
Claus Gittinger <cg@exept.de>
parents: 10439
diff changeset
  6784
        (aBlock value:(self at:index)) ifTrue:[^ index].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6785
    ].
11705
e517db0ccec8 findFirst - refactored
Claus Gittinger <cg@exept.de>
parents: 11463
diff changeset
  6786
    ^ exceptionalValue value
e517db0ccec8 findFirst - refactored
Claus Gittinger <cg@exept.de>
parents: 11463
diff changeset
  6787
e517db0ccec8 findFirst - refactored
Claus Gittinger <cg@exept.de>
parents: 11463
diff changeset
  6788
    "
e517db0ccec8 findFirst - refactored
Claus Gittinger <cg@exept.de>
parents: 11463
diff changeset
  6789
     #(1 2 3 4 5 6) findFirst:[:x | (x >= 3)] ifNone:0
e517db0ccec8 findFirst - refactored
Claus Gittinger <cg@exept.de>
parents: 11463
diff changeset
  6790
     #(1 2 3 4 5 6) findFirst:[:x | (x >= 7)] ifNone:nil
e517db0ccec8 findFirst - refactored
Claus Gittinger <cg@exept.de>
parents: 11463
diff changeset
  6791
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6792
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6793
929
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6794
findFirst:aBlock startingAt:startIndex
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6795
    "find the first element, for which evaluation of the argument, aBlock
3887
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6796
     returns true; return its index or 0 if none detected.
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6797
     This is much like #detect:startingAt:, however, here an INDEX is returned,
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6798
     while #detect returns the element."
929
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6799
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6800
    |start "{ Class: SmallInteger }"
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6801
     stop  "{ Class: SmallInteger }" |
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6802
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6803
    start := startIndex. "/ as a compiler hint
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6804
    stop := self size.
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6805
    start to:stop do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6806
	(aBlock value:(self at:index)) ifTrue:[^ index].
929
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6807
    ].
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6808
    ^ 0
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6809
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6810
    "
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6811
     #(1 4 3 4 3 6) findFirst:[:x | (x > 3)] startingAt:4
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6812
     'one.two.three' findFirst:[:c | (c == $.)] startingAt:5
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6813
    "
3887
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6814
c3c86dcca908 added #detect:startingAt:
Claus Gittinger <cg@exept.de>
parents: 3764
diff changeset
  6815
    "Modified: / 21.10.1998 / 18:48:22 / cg"
929
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6816
!
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6817
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6818
findLast:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6819
    "find the last element, for which evaluation of the argument, aBlock
8193
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6820
     returns true.
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6821
     Return its index or 0 if none detected."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6822
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6823
    |start "{ Class: SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6824
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6825
    start := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6826
    start to:1 by:-1 do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6827
	(aBlock value:(self at:index)) ifTrue:[^ index].
252
  6828
    ].
  6829
    ^ 0
  6830
  6831
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6832
     #(1 99 3 99 5 6) findLast:[:x | (x == 99)]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  6833
     'one.two.three' findLast:[:c | (c == $.)]
252
  6834
    "
  6835
!
  6836
929
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6837
findLast:aBlock startingAt:startIndex
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6838
    "find the last element, for which evaluation of the argument, aBlock
8193
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6839
     returns true. Start the search at startIndex.
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6840
     Return its index or 0 if none detected."
929
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6841
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6842
    |start "{ Class: SmallInteger }"|
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6843
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6844
    start := startIndex.
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6845
    start to:1 by:-1 do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6846
	(aBlock value:(self at:index)) ifTrue:[^ index].
929
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6847
    ].
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6848
    ^ 0
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6849
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6850
    "
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6851
     #(1 99 3 99 5 6) findLast:[:x | (x == 99)] startingAt:3
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6852
     'one.two.three' findLast:[:c | (c == $.)] startingAt:7
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6853
    "
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6854
!
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  6855
8193
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6856
findLast:aBlock startingAt:startIndex endingAt:endIndex
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6857
    "find the last element, for which evaluation of the argument, aBlock
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6858
     returns true. Start the search at startIndex.
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6859
     End the search at endIndex or when an element is found.
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6860
     Return its index or 0 if none detected."
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6861
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6862
    |start "{ Class: SmallInteger }"|
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6863
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6864
    start := startIndex.
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6865
    start to:endIndex by:-1 do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6866
	(aBlock value:(self at:index)) ifTrue:[^ index].
8193
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6867
    ].
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6868
    ^ 0
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6869
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6870
    "
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6871
     #(1 99 3 99 5 6) findLast:[:x | (x == 99)] startingAt:3
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6872
     #(1 99 3 99 3 5 6) findLast:[:x | (x == 3)] startingAt:7 endingAt:6
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6873
     #(1 99 3 99 3 5 6) findLast:[:x | (x == 3)] startingAt:7 endingAt:5
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6874
     'one.two.three' findLast:[:c | (c == $.)] startingAt:7
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6875
    "
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6876
!
a6c58ad0ef7e comments in findLast:*;
ca
parents: 8183
diff changeset
  6877
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6878
indexOfAny:aCollection
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6879
    "search the collection for an element in aCollection.
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6880
     if found, return the index otherwise return 0.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6881
     The comparison is done using =
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6882
     (i.e. equality test - not identity test).
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6883
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6884
     Notice, that for big collections, the runtime of this search
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6885
     grows proportional to size(receiver) * size(aCollection).
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6886
     You may think about using other mechanisms (Sets, Dictionaries etc)."
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6887
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6888
    ^ self indexOfAny:aCollection startingAt:1
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6889
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6890
    "
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6891
     #(10 20 30 40 50 60 70) indexOfAny:#(40 30 50)
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6892
     #(10 20 30 40 50 60 70) indexOfAny:#(40.0 30.0 50)
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6893
    "
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6894
!
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6895
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6896
indexOfAny:aCollection startingAt:start
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6897
    "search the collection for an element in aCollection,
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6898
     starting the search at index start;
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6899
     if found, return the index otherwise return 0.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6900
     The comparison is done using =
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6901
     (i.e. equality test - not identity test).
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6902
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6903
     Notice, that for big collections, the runtime of this search
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6904
     grows proportional to size(receiver) * size(aCollection).
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6905
     You may think about using other mechanisms (Sets, Dictionaries etc)."
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6906
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6907
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6908
    |startIndex "{ Class: SmallInteger }"
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6909
     stop       "{ Class: SmallInteger }" |
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6910
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6911
    startIndex := start.
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6912
    stop := self size.
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6913
    startIndex to:stop do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6914
	(aCollection includes:(self at:index)) ifTrue:[^ index].
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6915
    ].
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6916
    ^ 0
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6917
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6918
     #(10 20 30 40 10 20 30 40) indexOfAny:#(40 50 30) startingAt:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6919
     #(10 20 30 40 10 20 30 40) indexOfAny:#(40.0 50 30.0) startingAt:5
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  6920
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6921
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6922
518
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6923
indexOfAny:aCollection startingAt:start ifAbsent:exceptionBlock
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6924
    "search the collection for an element in aCollection,
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6925
     starting the search at index start;
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6926
     if found, return the index. If not, return the value returned by exceptionBlock.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6927
     The comparison is done using =
518
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6928
     (i.e. equality test - not identity test).
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6929
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6930
     Notice, that for big collections, the runtime of this search
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6931
     grows proportional to size(receiver) * size(aCollection).
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6932
     You may think about using other mechanisms (Sets, Dictionaries etc)."
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6933
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6934
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6935
    |val|
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6936
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6937
    val := self indexOfAny:aCollection startingAt:start .
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6938
    val == 0 ifTrue:[^ exceptionBlock value].
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6939
    ^ val.
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6940
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6941
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6942
     #(10 20 30 40 10 20 30 40) indexOfAny:#(40 50 30) startingAt:5 ifAbsent:-1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6943
     #(10 20 30 40 10 20 30 40) indexOfAny:#(40.0 50 30.0) startingAt:5 ifAbsent:-1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6944
     #(10 20 30 40 10 20 30 40) indexOfAny:#(99 88 77) startingAt:5 ifAbsent:['oops']
518
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6945
    "
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6946
!
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  6947
4338
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6948
indexOfAnyOf:aCollection
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6949
    "squeak compatibility: same as #indexOfAny:"
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6950
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6951
    ^ self indexOfAny:aCollection
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6952
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6953
    "
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6954
     #(10 20 30 40 50 60 70) indexOfAnyOf:#(40 30 50)
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6955
     #(10 20 30 40 50 60 70) indexOfAnyOf:#(40.0 30.0 50)
13252
92b2e4de2ba5 comment/format in: #indexOfAnyOf:
Claus Gittinger <cg@exept.de>
parents: 13202
diff changeset
  6956
     'abcdefg' indexOfAnyOf:(CharacterSet newFrom:'cef')
92b2e4de2ba5 comment/format in: #indexOfAnyOf:
Claus Gittinger <cg@exept.de>
parents: 13202
diff changeset
  6957
    "
92b2e4de2ba5 comment/format in: #indexOfAnyOf:
Claus Gittinger <cg@exept.de>
parents: 13202
diff changeset
  6958
92b2e4de2ba5 comment/format in: #indexOfAnyOf:
Claus Gittinger <cg@exept.de>
parents: 13202
diff changeset
  6959
    "Modified: / 28-01-2011 / 18:03:14 / cg"
4338
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6960
!
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6961
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6962
indexOfAnyOf:aCollection startingAt:start
4338
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6963
    "squeak compatibility: same as #indexOfAny:startingAt:"
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6964
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6965
    ^ self indexOfAny:aCollection startingAt:start
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6966
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6967
    "
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6968
     #(10 20 30 40 50 60 70) indexOfAnyOf:#(40 30 50)     startingAt:2
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6969
     #(10 20 30 40 50 60 70) indexOfAnyOf:#(40.0 30.0 50) startingAt:2
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6970
    "
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6971
!
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6972
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6973
indexOfAnyOf:aCollection startingAt:start ifAbsent:exceptionBlock
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6974
    "squeak compatibility: same as #indexOfAny:startingAt:ifAbsent:"
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6975
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6976
    ^ self indexOfAny:aCollection startingAt:start ifAbsent:exceptionBlock
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6977
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6978
!
326f43992dcd added #indexOfAnyOf:* for squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 4303
diff changeset
  6979
368
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  6980
indexOfSubCollection:aCollection
9234
d519dafacdd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9162
diff changeset
  6981
    "find a subcollection. If found, return the index; if not found, return 0."
368
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  6982
1145
a094d90e11bf dont use [0] blocks - use 0 constant instead
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  6983
    ^ self indexOfSubCollection:aCollection startingAt:1 ifAbsent:0
368
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  6984
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  6985
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6986
     #(1 2 3 4 5 6 7) indexOfSubCollection:#()
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6987
     #(1 2 3 4 5 6 7) indexOfSubCollection:#(1)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6988
     #(1 2 3 4 5 6 7) indexOfSubCollection:#(1 2 3 4)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6989
     #(1 2 3 4 5 6 7) indexOfSubCollection:#(2 3 5)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6990
     #(1 2 3 2 3 4 5) indexOfSubCollection:#(2 3 4)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6991
     #(1 2 3 4 5 6 7) indexOfSubCollection:#(5 6 7)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6992
     #(1 2 3 4 5 6 7) indexOfSubCollection:#(5 6 8)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  6993
     #(1 2 3 4 5 6 7) indexOfSubCollection:#(5 6 7 8)
13345
f3e950c4cb98 comment/format in: #indexOfSubCollection:
Claus Gittinger <cg@exept.de>
parents: 13252
diff changeset
  6994
     'foobarbaz' indexOfSubCollection:'bar'
f3e950c4cb98 comment/format in: #indexOfSubCollection:
Claus Gittinger <cg@exept.de>
parents: 13252
diff changeset
  6995
    "
f3e950c4cb98 comment/format in: #indexOfSubCollection:
Claus Gittinger <cg@exept.de>
parents: 13252
diff changeset
  6996
f3e950c4cb98 comment/format in: #indexOfSubCollection:
Claus Gittinger <cg@exept.de>
parents: 13252
diff changeset
  6997
    "Modified: / 20-04-2011 / 19:11:20 / cg"
368
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  6998
!
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  6999
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7000
indexOfSubCollection:aCollection ifAbsent:exceptionBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7001
    "find a subcollection. If found, return the index;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7002
     if not found, return the result of evaluating exceptionBlock."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7003
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7004
    ^ self indexOfSubCollection:aCollection startingAt:1 ifAbsent:exceptionBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7005
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7006
368
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7007
indexOfSubCollection:aCollection startingAt:startIndex
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7008
    "find a subcollection starting at index.
368
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7009
     If found, return the index; if not found, return 0."
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7010
1145
a094d90e11bf dont use [0] blocks - use 0 constant instead
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  7011
    ^ self indexOfSubCollection:aCollection startingAt:startIndex ifAbsent:0
368
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7012
!
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7013
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7014
indexOfSubCollection:aCollection startingAt:startIndex ifAbsent:exceptionBlock
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7015
    "find a subcollection, starting at index. If found, return the index;
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7016
     if not found, return the result of evaluating exceptionBlock.
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7017
     This is a q&d hack - not very efficient"
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7018
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7019
    |same first
368
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7020
     mySize     "{Class: SmallInteger }"
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7021
     checkIndex "{Class: SmallInteger }"
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7022
     cmpIndex   "{Class: SmallInteger }"
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7023
     sz         "{Class: SmallInteger }"|
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7024
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7025
    mySize := self size.
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7026
    sz := aCollection size.
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7027
    sz == 0 ifTrue:[^ exceptionBlock value].
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7028
    first := aCollection at:1.
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7029
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7030
    checkIndex := startIndex - 1.
368
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7031
    [true] whileTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7032
	checkIndex := self indexOf:first startingAt:checkIndex+1.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7033
	checkIndex == 0 ifTrue:[^ exceptionBlock value].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7034
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7035
	(checkIndex + sz - 1) > mySize ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7036
	    ^ 0
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7037
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7038
	same := true.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7039
	cmpIndex := 1.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7040
	[same and:[cmpIndex <= sz]] whileTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7041
	    (self at:checkIndex + cmpIndex - 1) = (aCollection at:cmpIndex) ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7042
		same := false
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7043
	    ] ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7044
		cmpIndex := cmpIndex + 1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7045
	    ]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7046
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7047
	same ifTrue:[^ checkIndex].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7048
    ]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7049
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7050
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7051
     #(1 2 3 4 5 6 7) indexOfSubCollection:#()  startingAt:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7052
     #(1 2 3 4 5 6 7) indexOfSubCollection:#(1) startingAt:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7053
     #(1 2 1 2 1 2 3) indexOfSubCollection:#(1 2 3) startingAt:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7054
     #(1 2 1 2 1 2 3) indexOfSubCollection:#(1 2)   startingAt:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7055
     #(1 2 1 2 1 2 3) indexOfSubCollection:#(1 2)   startingAt:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7056
     #(1 2 1 2 1 2 3) indexOfSubCollection:#(1 2)   startingAt:4
368
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  7057
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7058
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7059
3452
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7060
lastIndexOfSubCollection:aCollection
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7061
    "find a subcollection from the end.
3452
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7062
     If found, return the index; if not found, return 0."
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7063
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7064
    ^ self lastIndexOfSubCollection:aCollection startingAt:self size ifAbsent:0
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7065
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7066
    "Created: / 16.5.1998 / 20:08:55 / cg"
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7067
    "Modified: / 16.5.1998 / 20:12:37 / cg"
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7068
!
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7069
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7070
lastIndexOfSubCollection:aCollection ifAbsent:exceptionBlock
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7071
    "find a subcollection from the end. If found, return the index;
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7072
     if not found, return the result of evaluating exceptionBlock."
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7073
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7074
    ^ self lastIndexOfSubCollection:aCollection startingAt:self size ifAbsent:exceptionBlock
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7075
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7076
    "Created: / 16.5.1998 / 20:09:08 / cg"
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7077
    "Modified: / 16.5.1998 / 20:12:39 / cg"
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7078
!
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7079
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7080
lastIndexOfSubCollection:aCollection startingAt:startIndex
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7081
    "find a subcollection from the end starting at index.
3452
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7082
     If found, return the index; if not found, return 0."
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7083
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7084
    ^ self lastIndexOfSubCollection:aCollection startingAt:startIndex ifAbsent:0
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7085
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7086
    "Created: / 16.5.1998 / 20:09:23 / cg"
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7087
!
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7088
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7089
lastIndexOfSubCollection:aCollection startingAt:startIndex ifAbsent:exceptionBlock
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7090
    "find a subcollection from the end, starting at index. If found, return the index;
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7091
     if not found, return the result of evaluating exceptionBlock.
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7092
     This is a q&d hack - not very efficient"
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7093
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7094
    |same last
3452
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7095
     mySize     "{Class: SmallInteger }"
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7096
     checkIndex "{Class: SmallInteger }"
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7097
     cmpIndex   "{Class: SmallInteger }"
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7098
     sz         "{Class: SmallInteger }"|
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7099
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7100
    mySize := self size.
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7101
    sz := aCollection size.
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7102
    sz == 0 ifTrue:[^ exceptionBlock value].
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7103
    last := aCollection at:sz.
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7104
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7105
    checkIndex := startIndex + sz.
3452
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7106
    checkIndex >  mySize ifTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7107
	checkIndex := mySize + 1
3452
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7108
    ].
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7109
    [true] whileTrue:[
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7110
	checkIndex := self lastIndexOf:last startingAt:checkIndex-1.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7111
	checkIndex == 0 ifTrue:[^ exceptionBlock value].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7112
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7113
	(checkIndex - sz + 1) < 1 ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7114
	    ^ 0
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7115
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7116
	same := true.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7117
	cmpIndex := 1.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7118
	[same and:[cmpIndex <= sz]] whileTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7119
	    (self at:checkIndex - sz + cmpIndex) = (aCollection at:cmpIndex) ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7120
		same := false
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7121
	    ] ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7122
		cmpIndex := cmpIndex + 1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7123
	    ]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7124
	].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7125
	same ifTrue:[^ checkIndex - sz + 1].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7126
    ]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7127
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7128
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7129
     #(1 2 3 4 5 6 7) lastIndexOfSubCollection:#()  startingAt:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7130
     #(1 2 3 4 5 6 7) lastIndexOfSubCollection:#(1)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7131
     #(1 2 3 4 5 6 7) lastIndexOfSubCollection:#(1) startingAt:4
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7132
     #(1 3 1 2 1 3 3) lastIndexOfSubCollection:#(1 2 3)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7133
     #(1 2 1 2 1 2 3) lastIndexOfSubCollection:#(1 2 3) startingAt:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7134
     #(1 2 1 2 1 2 3) lastIndexOfSubCollection:#(1 2 3)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7135
     #(1 2 1 2 1 2 3) lastIndexOfSubCollection:#(1 2)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7136
     #(1 2 1 2 1 2 3) lastIndexOfSubCollection:#(1 2)   startingAt:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7137
     #(1 2 1 2 1 2 3) lastIndexOfSubCollection:#(1 2)   startingAt:4
3452
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7138
    "
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7139
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7140
    "Modified: / 16.5.1998 / 20:21:46 / cg"
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7141
! !
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7142
7264
cf619b9f31b6 method category rename
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  7143
!SequenceableCollection methodsFor:'searching-equality'!
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7144
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7145
includes:anElement
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7146
    "return true if the collection contains anElement; false otherwise.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7147
     Comparison is done using equality compare (i.e. =).
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7148
     See #includesIdentical: if identity is asked for."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7149
10194
a2c32d748d1e *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10150
diff changeset
  7150
    ^ (self indexOf:anElement startingAt:1) ~~ 0
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7151
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7152
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7153
     args:    anElement : <object>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7154
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7155
     returns: true  - if found
10194
a2c32d748d1e *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10150
diff changeset
  7156
              false - if not found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7157
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7158
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7159
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7160
     #(10 20 30 40 50 60 70) includes:99
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7161
     #(10 20 30 40 50 60 70) includes:40
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7162
     #(10 20 30 40 50 60 70) includes:40.0
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7163
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7164
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7165
    "Modified: / 20.5.1998 / 15:00:23 / cg"
3452
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7166
!
95d66fc71059 added #lastIndexOfSubCollection family of methods.
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  7167
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7168
indexOf:anElement
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7169
    "search the collection for anElement;
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7170
     if found, return the index otherwise return 0.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7171
     The comparison is done using =
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7172
     (i.e. equality test - not identity test)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7173
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7174
    ^ self indexOf:anElement startingAt:1
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7175
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7176
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7177
     args:    anElement : <object>
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7178
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7179
     returns: elementIndex - if found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7180
	      0            - if not found
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7181
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7182
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7183
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7184
     #(10 20 30 40 50 60 70) indexOf:40
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7185
     #(10 20 30 40 50 60 70) indexOf:40.0
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7186
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7187
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7188
    "Modified: / 20.5.1998 / 14:59:55 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7189
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7190
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7191
indexOf:anElement ifAbsent:exceptionBlock
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7192
    "search the collection for anElement;
12037
fa963aa96dcd comment/format in: #indexOf:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 12007
diff changeset
  7193
     if found, return the index; otherwise return the value of the exceptionBlock.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7194
     The comparison is done using =
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7195
     (i.e. equality test - not identity test)."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7196
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7197
    |index|
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7198
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7199
    index := self indexOf:anElement startingAt:1.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7200
    (index == 0) ifTrue:[^ exceptionBlock value].
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7201
    ^ index
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7202
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7203
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7204
     args:    anElement      : <object>
12037
fa963aa96dcd comment/format in: #indexOf:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 12007
diff changeset
  7205
              exceptionBlock : <valueImplementor>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7206
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7207
     returns: elementIndex         - if found
12037
fa963aa96dcd comment/format in: #indexOf:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 12007
diff changeset
  7208
              exceptionBlock value - if not found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7209
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7210
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7211
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7212
     #(10 20 30 40 10 20 30 40) indexOf:40   ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7213
     #(10 20 30 40 10 20 30 40) indexOf:40.0 ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7214
     #(10 20 30 40 10 20 30 40) indexOf:35   ifAbsent:['none']
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7215
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7216
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7217
    "Modified: / 20.5.1998 / 14:57:35 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7218
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7219
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7220
indexOf:elementToFind replaceWith:replacement startingAt:start stoppingAt:stop
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7221
    "search for the first occurrence of elementToFind starting at start,
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7222
     stopping the search at stop. If found, replace the element by replacement
14144
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7223
     and return the index. If not found, return 0.
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7224
     The comparison is done using =
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7225
     (i.e. equality test - not identity test)."
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7226
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7227
    |idx|
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7228
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7229
    idx := self indexOf:elementToFind startingAt:start.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7230
    ((idx > 0) and:[idx <= stop]) ifTrue:[
14144
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7231
        self at:idx put:replacement.
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7232
        ^ idx
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7233
    ].
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7234
    ^ 0
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7235
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7236
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7237
     args:    elementToFind : <object>
14144
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7238
              replacement   : <integer>
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7239
              start         : <integer>
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7240
              stop          : <integer>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7241
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7242
     returns: elementIndex - if found (and replaced)
14144
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7243
              0            - if not found
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7244
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7245
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7246
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7247
     |a|
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7248
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7249
     a := #(10 20 30 40 50 60 70).
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7250
     (a indexOf:30 replaceWith:nil startingAt:1 stoppingAt:7) printNL.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7251
     a printNL.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7252
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7253
14144
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7254
    "Modified: / 20-05-1998 / 14:59:30 / cg"
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7255
    "Modified (comment): / 23-05-2012 / 13:29:18 / cg"
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7256
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7257
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7258
indexOf:anElement startingAt:start
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7259
    "search the collection for anElement, starting the search at index start;
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7260
     if found, return the index otherwise return 0.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7261
     The comparison is done using =
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7262
     (i.e. equality test - not identity test)."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7263
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7264
    |startIndex "{ Class: SmallInteger }"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7265
     stop       "{ Class: SmallInteger }" |
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7266
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7267
    startIndex := start.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7268
    stop := self size.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7269
    startIndex to:stop do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7270
	anElement = (self at:index) ifTrue:[^ index].
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7271
    ].
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7272
    ^ 0
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7273
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7274
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7275
     args:    anElement : <object>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7276
	      start     : <integer>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7277
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7278
     returns: elementIndex - if found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7279
	      0            - if not found
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7280
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7281
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7282
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7283
     #(10 20 30 40 10 20 30 40) indexOf:40   startingAt:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7284
     #(10 20 30 40 10 20 30 40) indexOf:40.0 startingAt:5
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7285
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7286
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7287
    "Modified: / 20.5.1998 / 14:58:49 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7288
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7289
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7290
indexOf:anElement startingAt:start endingAt:stop
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7291
    "search the collection for anElement, starting the search at index start;
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7292
     ending at stop.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7293
     If found (within the range), return the index, otherwise return 0.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7294
     The comparison is done using =
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7295
     (i.e. equality test - not identity test)."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7296
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7297
    |startIndex "{ Class: SmallInteger }"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7298
     stopIndex  "{ Class: SmallInteger }" |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7299
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7300
    startIndex := start.
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7301
    stopIndex := self size min:stop.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7302
    startIndex to:stopIndex do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7303
	anElement = (self at:index) ifTrue:[^ index].
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7304
    ].
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7305
    ^ 0
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7306
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7307
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7308
     args:    anElement      : <object>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7309
	      start          : <integer>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7310
	      stop           : <integer>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7311
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7312
     returns: elementIndex         - if found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7313
	      exceptionBlock value - if not found
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7314
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7315
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7316
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7317
     #(10 20 30 40 10 20 30 40) indexOf:40   startingAt:3 endingAt:99
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7318
     #(10 20 30 40 10 20 30 40) indexOf:40   startingAt:3 endingAt:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7319
     #(10 20 30 40 10 20 30 40) indexOf:40   startingAt:1 endingAt:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7320
     #(10 20 30 40 10 20 30 40) indexOf:40.0 startingAt:5
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7321
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7322
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7323
    "Created: / 12.4.1996 / 17:37:13 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7324
    "Modified: / 20.5.1998 / 14:58:28 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7325
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7326
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7327
indexOf:anElement startingAt:start ifAbsent:exceptionBlock
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7328
    "search the collection for anElement starting the search at index start;
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7329
     if found, return the index otherwise return the value of the
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7330
     exceptionBlock.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7331
     The comparison is done using =
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7332
     (i.e. equality test - not identity test)."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7333
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7334
    |index|
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7335
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7336
    index := self indexOf:anElement startingAt:start.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7337
    (index == 0) ifTrue:[^ exceptionBlock value].
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7338
    ^ index
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7339
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7340
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7341
     args:    anElement      : <object>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7342
	      start          : <integer>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7343
	      exceptionBlock : <valueImplementor>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7344
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7345
     returns: elementIndex         - if found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7346
	      exceptionBlock value - if not found
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7347
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7348
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7349
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7350
     #(10 20 30 40 10 20 30 40) indexOf:40   startingAt:5 ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7351
     #(10 20 30 40 10 20 30 40) indexOf:40.0 startingAt:5 ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7352
     #(10 20 30 40 10 20 30 40) indexOf:35   startingAt:5 ifAbsent:['none']
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7353
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7354
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7355
    "Modified: / 20.5.1998 / 14:58:05 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7356
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7357
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7358
lastIndexOf:anElement
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7359
    "search the collection backwards for anElement;
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7360
     if found, return the index otherwise return 0.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7361
     The comparison is done using =
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7362
     (i.e. equality test - not identity test)."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7363
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7364
    ^ self lastIndexOf:anElement startingAt:self size
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7365
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7366
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7367
     args:    anElement      : <object>
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7368
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7369
     returns: elementIndex - if found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7370
	      0            - if not found
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7371
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7372
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7373
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7374
     #(10 20 30 40 50 60 70) lastIndexOf:40
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7375
     #(10 20 30 40 50 60 70) lastIndexOf:40.0
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7376
     #(10 20 30 40 50 60 70) lastIndexOf:35
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7377
     #(10 20 30 40 50 60 70) lastIndexOf:10
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7378
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7379
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7380
    "Modified: / 20.5.1998 / 15:02:10 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7381
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7382
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7383
lastIndexOf:anElement ifAbsent:exceptionBlock
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7384
    "search the collection backwards for anElement;
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7385
     if found, return the index otherwise return the value of the
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7386
     exceptionBlock.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7387
     The comparison is done using =
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7388
     (i.e. equality test - not identity test)."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7389
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7390
    |index|
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7391
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7392
    index := self lastIndexOf:anElement startingAt:self size.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7393
    (index == 0) ifTrue:[^ exceptionBlock value].
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7394
    ^ index
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7395
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7396
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7397
     #(10 20 30 40 10 20 30 40) lastIndexOf:40   ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7398
     #(10 20 30 40 10 20 30 40) lastIndexOf:40.0 ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7399
     #(10 20 30 40 10 20 30 40) lastIndexOf:35   ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7400
     #(10 20 30 40 10 20 30 40) lastIndexOf:10   ifAbsent:['none']
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7401
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7402
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7403
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7404
lastIndexOf:anElement startingAt:start
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7405
    "search the collection backwards for anElement, starting the search at index start;
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7406
     if found, return the index otherwise return 0.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7407
     The comparison is done using =
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7408
     (i.e. equality test - not identity test)."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7409
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7410
    |startIndex "{ Class: SmallInteger }"|
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7411
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7412
    startIndex := start.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7413
    startIndex to:1 by:-1 do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7414
	anElement = (self at:index) ifTrue:[^ index].
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7415
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7416
    ^ 0
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7417
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7418
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7419
     #(10 20 30 40 10 20 30 40) lastIndexOf:40   startingAt:8
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7420
     #(10 20 30 40 10 20 30 40) lastIndexOf:40.0 startingAt:8
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7421
     #(10 20 30 40 10 20 30 40) lastIndexOf:35   startingAt:8
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7422
     #(10 20 30 40 10 20 30 40) lastIndexOf:10   startingAt:8
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7423
     #(10 20 30 40 10 20 30 40) lastIndexOf:10   startingAt:4
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7424
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7425
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7426
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7427
lastIndexOf:anElement startingAt:start ifAbsent:exceptionBlock
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7428
    "search the collection backwards for anElement starting the search at
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7429
     index start; if found, return the index
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7430
     otherwise return the value of the exceptionBlock.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7431
     The comparison is done using =
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7432
     (i.e. equality test - not identity test)."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7433
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7434
    |index|
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7435
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7436
    index := self lastIndexOf:anElement startingAt:start.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7437
    (index == 0) ifTrue:[^ exceptionBlock value].
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7438
    ^ index
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7439
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7440
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7441
     #(10 20 30 40 10 20 30 40) lastIndexOf:40   startingAt:8 ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7442
     #(10 20 30 40 10 20 30 40) lastIndexOf:40.0 startingAt:8 ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7443
     #(10 20 30 40 10 20 30 40) lastIndexOf:35   startingAt:8 ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7444
     #(10 20 30 40 10 20 30 40) lastIndexOf:10   startingAt:8 ifAbsent:['none']
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7445
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7446
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7447
4788
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7448
lastIndexOfAny:aCollection
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7449
    "search the collection backwards for any in aCollection;
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7450
     if found, return the index, otherwise return 0.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7451
     The comparison is done using =
4788
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7452
     (i.e. equality test - not identity test)."
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7453
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7454
    ^ self lastIndexOfAny:aCollection startingAt:self size
4788
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7455
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7456
    "
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7457
     args:    aCollection    : <collection>
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7458
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7459
     returns: elementIndex - if found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7460
	      0            - if not found
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7461
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7462
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7463
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7464
     #(10 20 30 40 50 60 70) lastIndexOfAny:#(40 60)
4788
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7465
     #(10 20 30 40 50 60 70) lastIndexOfAny:#(40.0 60)
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7466
     #(10 20 30 40 50 60 70) lastIndexOfAny:#(35 40)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7467
     #(10 20 30 40 50 60 70) lastIndexOfAny:#(15 35)
4788
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7468
    "
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7469
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7470
    "Modified: / 20.5.1998 / 15:02:10 / cg"
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7471
!
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7472
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7473
lastIndexOfAny:aCollection startingAt:start
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7474
    "search the collection backwards for any in aCollection, starting the search at index start;
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7475
     if found, return the index, otherwise return 0.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7476
     The comparison is done using =
4788
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7477
     (i.e. equality test - not identity test)."
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7478
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7479
    |startIndex "{ Class: SmallInteger }"|
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7480
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7481
    startIndex := start.
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7482
    startIndex to:1 by:-1 do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7483
	(aCollection includes:(self at:index)) ifTrue:[^ index].
4788
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7484
    ].
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7485
    ^ 0
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7486
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7487
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7488
     #(10 20 30 40 10 20 30 40) lastIndexOfAny:#(40 60)   startingAt:8
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7489
     #(10 20 30 40 10 20 30 40) lastIndexOfAny:#(40 60)   startingAt:7
4788
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7490
    "
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7491
!
3dc29c8e6ca8 added #lastIndexOfAny:
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
  7492
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7493
nextIndexOf:anElement from:start to:stop
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7494
    "search the collection for anElement, starting the search at index start,
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7495
     stopping at:stop;
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7496
     if found, return the index otherwise return 0.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7497
     The comparison is done using =
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7498
     (i.e. equality test - not identity test)."
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7499
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7500
    |startIndex "{ Class: SmallInteger }"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7501
     stopIndex  "{ Class: SmallInteger }" |
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7502
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7503
    startIndex := start.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7504
    stopIndex :=  stop.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7505
    startIndex to:stop do:[:index |
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7506
        anElement = (self at:index) ifTrue:[^ index].
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7507
    ].
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7508
    ^ 0
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7509
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7510
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7511
     args:    anElement : <object>
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7512
              start     : <integer>
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7513
              stop      : <integer>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7514
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7515
     returns: elementIndex - if found
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7516
              nil          - if not found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7517
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7518
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7519
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7520
     #(10 20 30 40 10 20 30 40) nextIndexOf:40   from:2 to:6
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7521
     #(10 20 30 40 10 20 30 40) nextIndexOf:40.0 from:2 to:6
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7522
     #(10 20 30 40 10 20 30 40) nextIndexOf:35   from:2 to:6
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7523
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7524
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7525
    "Modified: / 23-09-2011 / 14:03:05 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7526
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7527
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7528
nextIndexOf:anElement from:start to:stop ifAbsent:exceptionBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7529
    "search the collection for anElement, starting the search at index start
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7530
     and stopping at stop;
14144
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7531
     if found, return the index otherwise return the value of the exceptionBlock.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7532
     The comparison is done using =
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7533
     (i.e. equality test - not identity test)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7534
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7535
    |index|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7536
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7537
    index := self nextIndexOf:anElement from:start to:stop.
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7538
    index == 0 ifTrue:[^ exceptionBlock value].
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7539
    ^ index
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7540
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7541
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7542
     args:    anElement      : <object>
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7543
              start          : <integer>
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7544
              stop           : <integer>
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7545
              exceptionBlock : <valueImplementor>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7546
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7547
     returns: elementIndex           - if found
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7548
              valueImplementor value - if not found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7549
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7550
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7551
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7552
     #(10 20 30 40 10 20 30 40) nextIndexOf:40   from:2 to:6 ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7553
     #(10 20 30 40 10 20 30 40) nextIndexOf:40.0 from:2 to:6 ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7554
     #(10 20 30 40 10 20 30 40) nextIndexOf:35   from:2 to:6 ifAbsent:['none']
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  7555
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7556
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7557
    "Modified: / 23-09-2011 / 14:03:36 / cg"
14144
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7558
    "Modified (comment): / 23-05-2012 / 13:29:42 / cg"
2275
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7559
!
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7560
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7561
prevIndexOf:anElement from:startSearchIndex to:endSearchIndex
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7562
    "search the collection for anElement, starting the search at index start;
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7563
     ending at stop, going in reverse direction.
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7564
     If found (within the range), return the index, otherwise return 0.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7565
     The comparison is done using =
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7566
     (i.e. equality test - not identity test)."
2275
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7567
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7568
    |startIndex "{ Class: SmallInteger }"
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7569
     stopIndex  "{ Class: SmallInteger }" |
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7570
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7571
    startIndex := startSearchIndex.
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7572
    stopIndex := endSearchIndex max:1.
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7573
    startIndex to:stopIndex by:-1 do:[:index |
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7574
        anElement = (self at:index) ifTrue:[^ index].
2275
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7575
    ].
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7576
    ^ 0
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7577
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7578
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7579
     args:    anElement : <object>
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7580
              start     : <integer>
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7581
              stop      : <integer>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7582
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7583
     returns: elementIndex - if found
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7584
              nil          - if not found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7585
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7586
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7587
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7588
     #(10 20 30 40 10 20 30 40) prevIndexOf:40   from:7 to:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7589
     #(10 20 30 40 10 20 30 40) prevIndexOf:40.0 from:7 to:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7590
     #(10 20 30 40 10 20 30 40) prevIndexOf:35   from:7 to:5
2275
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7591
    "
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7592
13719
33c58d279282 changed:
Claus Gittinger <cg@exept.de>
parents: 13697
diff changeset
  7593
    "Modified: / 23-09-2011 / 14:02:36 / cg"
2275
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7594
!
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7595
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7596
prevIndexOf:anElement from:start to:stop ifAbsent:exceptionBlock
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7597
    "search the collection for anElement, starting the search at index start
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7598
     and stopping at stop, doing a reverse search;
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7599
     if found, return the index otherwise return the value of the
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7600
     exceptionBlock.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7601
     The comparison is done using =
2275
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7602
     (i.e. equality test - not identity test)."
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7603
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7604
    |index|
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7605
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7606
    index := self prevIndexOf:anElement from:start to:stop.
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7607
    (index == 0) ifTrue:[^ exceptionBlock value].
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7608
    ^ index
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7609
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7610
    "
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7611
     args:    anElement      : <object>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7612
	      start          : <integer>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7613
	      stop           : <integer>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7614
	      exceptionBlock : <valueImplementor>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7615
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7616
     returns: elementIndex           - if found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7617
	      valueImplementor value - if not found
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7618
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7619
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7620
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7621
     #(10 20 30 40 10 20 30 40) prevIndexOf:40   from:7 to:2 ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7622
     #(10 20 30 40 10 20 30 40) prevIndexOf:40.0 from:7 to:2 ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7623
     #(10 20 30 40 10 20 30 40) prevIndexOf:35   from:7 to:5 ifAbsent:['none']
2275
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7624
    "
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  7625
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7626
    "Modified: / 20.5.1998 / 15:13:05 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7627
! !
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7628
7264
cf619b9f31b6 method category rename
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  7629
!SequenceableCollection methodsFor:'searching-identity'!
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7630
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7631
identityIndexOf:anElement
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7632
    "search the collection for anElement using identity compare (i.e. ==);
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7633
     if found, return the index otherwise return 0."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7634
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7635
    ^ self identityIndexOf:anElement startingAt:1
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7636
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7637
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7638
     args:    anElement : <object>
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7639
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7640
     returns: elementIndex - if found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7641
	      0            - if not found
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7642
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7643
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7644
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7645
     #(10 20 30 40 50 60 70) identityIndexOf:40
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7646
     #(10 20 30 40 50 60 70) identityIndexOf:40.0
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7647
     #(10 20 30 40 50 60 70) indexOf:40.0
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7648
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7649
    be careful:
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7650
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7651
     #(10 20 30 40.0 50 60 70) indexOf:40.0
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7652
     #(10 20 30 40.0 50 60 70) identityIndexOf:40.0
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7653
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7654
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7655
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7656
    "Modified: / 20.5.1998 / 14:57:14 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7657
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7658
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7659
identityIndexOf:anElement ifAbsent:exceptionBlock
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7660
    "search the collection for anElement using identity compare (i.e. ==);
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7661
     if found, return the index otherwise return the value of the
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7662
     exceptionBlock."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7663
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7664
    |index|
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7665
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7666
    index := self identityIndexOf:anElement startingAt:1.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7667
    (index == 0) ifTrue:[^ exceptionBlock value].
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7668
    ^ index
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7669
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7670
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7671
     args:    anElement      : <object>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7672
	      exceptionBlock : <valueImplementor>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7673
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7674
     returns: elementIndex         - if found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7675
	      exceptionBlock value - if not found
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7676
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7677
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7678
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7679
     #(10 20 30 40 50 60 70) identityIndexOf:40  ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7680
     #(10 20 30 40 50 60 70) identityIndexOf:35  ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7681
     #(10 20 30 40 50 60 70) identityIndexOf:40.0 ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7682
     #(10 20 30 40 50 60 70) indexOf:40.0         ifAbsent:['none']
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7683
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7684
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7685
    "Modified: / 20.5.1998 / 14:57:31 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7686
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7687
5520
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7688
identityIndexOf:anElement or:anotherElement
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7689
    "search the collection for anElement and anotherElement using identity compare (i.e. ==);
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7690
     if any is found, return the index otherwise return 0."
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7691
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7692
    ^ self identityIndexOf:anElement or:anotherElement startingAt:1
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7693
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7694
    "
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7695
     args:    anElement : <object>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7696
	      anotherElement : <object>
5520
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7697
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7698
     returns: elementIndex - if found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7699
	      0            - if not found
5520
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7700
    "
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7701
!
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7702
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7703
identityIndexOf:anElement or:anotherElement startingAt:start
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7704
    "search the collection for anElement and anotherElement, starting search at index start
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7705
     using identity compare  (i.e. ==);
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7706
     if any is found, return the index otherwise return 0."
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7707
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7708
    |startIndex "{ Class: SmallInteger }"
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7709
     stop       "{ Class: SmallInteger }"
5520
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7710
     el |
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7711
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7712
    startIndex := start.
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7713
    stop := self size.
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7714
    startIndex to:stop do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7715
	el := self at:index.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7716
	anElement == el ifTrue:[^ index].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7717
	anotherElement == el ifTrue:[^ index].
5520
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7718
    ].
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7719
    ^ 0
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7720
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7721
    "
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7722
     args:    anElement : <object>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7723
	      anotherElement : <object>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7724
	      start     : <integer>
5520
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7725
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7726
     returns: elementIndex - if found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7727
	      0            - if not found
5520
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7728
    "
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7729
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7730
    "
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7731
     #(10 20 30 40 10 20 30 40) identityIndexOf:40 or:30  startingAt:2
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7732
    "
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7733
!
97e2afebaa2e protocol completeness: added #identityIndexOf:or:
Claus Gittinger <cg@exept.de>
parents: 5501
diff changeset
  7734
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7735
identityIndexOf:anElement startingAt:start
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7736
    "search the collection for anElement, starting search at index start
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7737
     using identity compare  (i.e. ==);
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7738
     if found, return the index otherwise return 0."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7739
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7740
    |startIndex "{ Class: SmallInteger }"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7741
     stop       "{ Class: SmallInteger }" |
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7742
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7743
    startIndex := start.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7744
    stop := self size.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7745
    startIndex to:stop do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7746
	anElement == (self at:index) ifTrue:[^ index].
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7747
    ].
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7748
    ^ 0
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7749
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7750
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7751
     args:    anElement : <object>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7752
	      start     : <integer>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7753
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7754
     returns: elementIndex - if found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7755
	      0            - if not found
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7756
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7757
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7758
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7759
     #(10 20 30 40 10 20 30 40) identityIndexOf:40   startingAt:5
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7760
     #(10 20 30 40 10 20 30 40) identityIndexOf:40.0 startingAt:5
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7761
     #(10 20 30 40 10 20 30 40) indexOf:40.0         startingAt:5
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7762
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7763
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7764
    "Modified: / 20.5.1998 / 14:57:09 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7765
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7766
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7767
identityIndexOf:anElement startingAt:start endingAt:stop
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7768
    "search the collection for anElement, starting the search at index start;
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7769
     ending at stop.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7770
     If found (within the range), return the index, otherwise return 0.
14144
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7771
     The comparison is done using ==
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7772
     (i.e. identity test - not equality test)."
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7773
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7774
    |startIndex "{ Class: SmallInteger }"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7775
     stopIndex  "{ Class: SmallInteger }" |
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7776
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7777
    startIndex := start.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7778
    stopIndex := self size min:stop.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7779
    startIndex to:stopIndex do:[:index |
14144
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7780
        anElement == (self at:index) ifTrue:[^ index].
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7781
    ].
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7782
    ^ 0
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7783
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7784
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7785
     args:    anElement : <object>
14144
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7786
              start     : <integer>
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7787
              stop      : <integer>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7788
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7789
     returns: elementIndex - if found
14144
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7790
              0            - if not found
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7791
    "
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7792
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7793
    "Created: / 12-04-1996 / 18:23:07 / cg"
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7794
    "Modified: / 20-05-1998 / 15:00:50 / cg"
f11efb060199 wrong comment in:
Claus Gittinger <cg@exept.de>
parents: 14138
diff changeset
  7795
    "Modified (comment): / 23-05-2012 / 13:28:21 / cg"
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7796
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7797
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7798
identityIndexOf:anElement startingAt:start ifAbsent:exceptionBlock
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7799
    "search the collection for anElement, starting search at index start;
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7800
     if found, return the index otherwise return the value of the
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7801
     exceptionBlock.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7802
     This one searches for identical objects (i.e. ==)."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7803
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7804
    |index|
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7805
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7806
    index := self identityIndexOf:anElement startingAt:start.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7807
    (index == 0) ifTrue:[^ exceptionBlock value].
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7808
    ^ index
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7809
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7810
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7811
     args:    anElement      : <object>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7812
	      start          : <integer>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7813
	      exceptionBlock : <valueImplementor>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7814
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7815
     returns: elementIndex         - if found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7816
	      exceptionBlock value - if not found
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7817
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7818
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7819
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7820
     #(10 20 30 40 10) identityIndexOf:10 startingAt:3 ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7821
     #(10 20 30 40 10) identityIndexOf:35 startingAt:3 ifAbsent:['none']
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7822
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7823
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7824
    "Modified: / 20.5.1998 / 15:01:23 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7825
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7826
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7827
includesIdentical:anElement
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7828
    "return true if the collection contains anElement; false otherwise.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7829
     Comparison is done using identity compare (i.e. ==).
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7830
     See #includes: if equality is asked for."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7831
10194
a2c32d748d1e *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10150
diff changeset
  7832
    ^ (self identityIndexOf:anElement startingAt:1) ~~ 0
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7833
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7834
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7835
     args:    anElement : <object>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7836
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7837
     returns: true  - if found
10194
a2c32d748d1e *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10150
diff changeset
  7838
              false - if not found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7839
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7840
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7841
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7842
     #(10 20 30 40 50 60 70) includesIdentical:40
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7843
     #(10 20 30 40 50 60 70) includesIdentical:40.0
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7844
     #(10 20 30 40 50 60 70) includes:40
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7845
     #(10 20 30 40 50 60 70) includes:40.0
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7846
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7847
     be careful:
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7848
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7849
     #(10 20 30 40.0 50 60 70) includes:40.0
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7850
     #(10 20 30 40.0 50 60 70) includesIdentical:40.0
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7851
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7852
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7853
    "Modified: / 20.5.1998 / 15:00:16 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7854
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7855
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7856
lastIdentityIndexOf:anElement
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7857
    "search the collection backwards for anElement;
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7858
     if found, return the index otherwise return 0.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7859
     The comparison is done using ==
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7860
     (i.e. identity test - not equality test)."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7861
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7862
    ^ self lastIdentityIndexOf:anElement startingAt:self size
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7863
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7864
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7865
     args:    anElement      : <object>
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7866
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7867
     returns: elementIndex - if found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7868
	      0            - if not found
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7869
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7870
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7871
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7872
     #(10 20 30 40 50 60 70) lastIdentityIndexOf:40
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7873
     #(10 20 30 40 50 60 70) lastIdentityIndexOf:40.0
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7874
     #(10 20 30 40 50 60 70) lastIdentityIndexOf:35
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7875
     #(10 20 30 40 50 60 70) lastIdentityIndexOf:10
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7876
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7877
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7878
    "Created: / 20.5.1998 / 15:03:06 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7879
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7880
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7881
lastIdentityIndexOf:anElement ifAbsent:exceptionBlock
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7882
    "search the collection backwards for anElement;
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7883
     if found, return the index otherwise return the value of the
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7884
     exceptionBlock.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7885
     The comparison is done using ==
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7886
     (i.e. identity test - not equality test)."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7887
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7888
    |index|
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7889
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7890
    index := self lastIdentityIndexOf:anElement startingAt:self size.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7891
    (index == 0) ifTrue:[^ exceptionBlock value].
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7892
    ^ index
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7893
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7894
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7895
     args:    anElement      : <object>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7896
	      exceptionBlock : <valueImplementor>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7897
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7898
     returns: elementIndex         - if found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7899
	      exceptionBlock value - if not found
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7900
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7901
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7902
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7903
     #(10 20 30 40 10 20 30 40) lastIdentityIndexOf:40   ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7904
     #(10 20 30 40 10 20 30 40) lastIdentityIndexOf:40.0 ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7905
     #(10 20 30 40 10 20 30 40) lastIdentityIndexOf:35   ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7906
     #(10 20 30 40 10 20 30 40) lastIdentityIndexOf:10   ifAbsent:['none']
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7907
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7908
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7909
    "Created: / 20.5.1998 / 15:04:46 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7910
    "Modified: / 20.5.1998 / 15:05:53 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7911
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7912
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7913
lastIdentityIndexOf:anElement startingAt:start
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7914
    "search the collection backwards for anElement, starting the search at index start;
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7915
     if found, return the index otherwise return 0.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7916
     The comparison is done using ==
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7917
     (i.e. identity test - not equality test)."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7918
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7919
    |startIndex "{ Class: SmallInteger }"|
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7920
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7921
    startIndex := start.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7922
    startIndex to:1 by:-1 do:[:index |
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7923
	anElement == (self at:index) ifTrue:[^ index].
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7924
    ].
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7925
    ^ 0
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7926
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7927
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7928
     args:    anElement      : <object>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7929
	      start          : <integer>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7930
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7931
     returns: elementIndex - if found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7932
	      0            - if not found
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7933
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7934
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7935
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7936
     #(10 20 30 40 10 20 30 40) lastIdentityIndexOf:40   startingAt:8
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7937
     #(10 20 30 40 10 20 30 40) lastIdentityIndexOf:40.0 startingAt:8
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7938
     #(10 20 30 40 10 20 30 40) lastIdentityIndexOf:35   startingAt:8
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7939
     #(10 20 30 40 10 20 30 40) lastIdentityIndexOf:10   startingAt:8
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7940
     #(10 20 30 40 10 20 30 40) lastIdentityIndexOf:10   startingAt:4
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7941
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7942
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7943
    "Modified: / 20.5.1998 / 15:06:04 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7944
!
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7945
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7946
lastIdentityIndexOf:anElement startingAt:start ifAbsent:exceptionBlock
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7947
    "search the collection backwards for anElement starting the search at
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7948
     index start; if found, return the index
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7949
     otherwise return the value of the exceptionBlock.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7950
     The comparison is done using ==
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7951
     (i.e. identity test - not equality test)."
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7952
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7953
    |index|
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7954
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7955
    index := self lastIdentityIndexOf:anElement startingAt:start.
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7956
    (index == 0) ifTrue:[^ exceptionBlock value].
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7957
    ^ index
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7958
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7959
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7960
     args:    anElement      : <object>
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7961
	      start          : <integer>
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7962
	      exceptionBlock : <valueImplementor>
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7963
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7964
     returns: elementIndex         - if found
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7965
	      exceptionBlock value - if not found
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7966
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7967
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7968
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7969
     #(10 20 30 40 10 20 30 40) lastIdentityIndexOf:40   startingAt:8 ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7970
     #(10 20 30 40 10 20 30 40) lastIdentityIndexOf:40.0 startingAt:8 ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7971
     #(10 20 30 40 10 20 30 40) lastIdentityIndexOf:35   startingAt:8 ifAbsent:['none']
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7972
     #(10 20 30 40 10 20 30 40) lastIdentityIndexOf:10   startingAt:8 ifAbsent:['none']
3468
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7973
    "
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7974
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7975
    "Modified: / 20.5.1998 / 15:06:21 / cg"
f91f61ea3b5c changed returnValue of nextIndexOf: / prevIndexOf
Claus Gittinger <cg@exept.de>
parents: 3452
diff changeset
  7976
    "Created: / 20.5.1998 / 15:07:42 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  7977
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  7978
a27a279701f8 Initial revision
claus
parents:
diff changeset
  7979
!SequenceableCollection methodsFor:'sorting & reordering'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  7980
6958
3ebd2c2d3afe New: #detectFirstInOrder:
Stefan Vogel <sv@exept.de>
parents: 6942
diff changeset
  7981
detectFirstInOrder:sortBlock
3ebd2c2d3afe New: #detectFirstInOrder:
Stefan Vogel <sv@exept.de>
parents: 6942
diff changeset
  7982
    "find the first element of the collection sorted with sortBlock"
3ebd2c2d3afe New: #detectFirstInOrder:
Stefan Vogel <sv@exept.de>
parents: 6942
diff changeset
  7983
3ebd2c2d3afe New: #detectFirstInOrder:
Stefan Vogel <sv@exept.de>
parents: 6942
diff changeset
  7984
    |selectedForNow start|
3ebd2c2d3afe New: #detectFirstInOrder:
Stefan Vogel <sv@exept.de>
parents: 6942
diff changeset
  7985
3ebd2c2d3afe New: #detectFirstInOrder:
Stefan Vogel <sv@exept.de>
parents: 6942
diff changeset
  7986
    start := true.
3ebd2c2d3afe New: #detectFirstInOrder:
Stefan Vogel <sv@exept.de>
parents: 6942
diff changeset
  7987
    self do:[:element|
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7988
	start ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7989
	    start := false.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7990
	    selectedForNow := element.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7991
	] ifFalse:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7992
	    (sortBlock value:element value:selectedForNow) ifTrue:[
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7993
		selectedForNow := element.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7994
	    ].
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  7995
	].
6958
3ebd2c2d3afe New: #detectFirstInOrder:
Stefan Vogel <sv@exept.de>
parents: 6942
diff changeset
  7996
    ].
3ebd2c2d3afe New: #detectFirstInOrder:
Stefan Vogel <sv@exept.de>
parents: 6942
diff changeset
  7997
3ebd2c2d3afe New: #detectFirstInOrder:
Stefan Vogel <sv@exept.de>
parents: 6942
diff changeset
  7998
    ^ selectedForNow
3ebd2c2d3afe New: #detectFirstInOrder:
Stefan Vogel <sv@exept.de>
parents: 6942
diff changeset
  7999
3ebd2c2d3afe New: #detectFirstInOrder:
Stefan Vogel <sv@exept.de>
parents: 6942
diff changeset
  8000
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8001
     #(1 16 7 98 3 19 4 0) detectFirstInOrder:[:a :b | a < b]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8002
     #(1 16 7 98 3 19 4 0) detectFirstInOrder:[:a :b | a > b]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8003
     #(1 -1 16 -16 7 -7 98 -98) detectFirstInOrder:[:a :b | a < b]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8004
     #(1 -1 16 -16 7 -7 98 -98) detectFirstInOrder:[:a :b | a abs < b abs]
6958
3ebd2c2d3afe New: #detectFirstInOrder:
Stefan Vogel <sv@exept.de>
parents: 6942
diff changeset
  8005
    "
3ebd2c2d3afe New: #detectFirstInOrder:
Stefan Vogel <sv@exept.de>
parents: 6942
diff changeset
  8006
!
3ebd2c2d3afe New: #detectFirstInOrder:
Stefan Vogel <sv@exept.de>
parents: 6942
diff changeset
  8007
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8008
randomShuffle
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8009
    "random shuffle my elements in place.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8010
     This is a destructive algorithm.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8011
     Moses, Oakford, Durstenfeld, Knuth algorithm.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8012
     See 'The Art of Computer Programming'."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8013
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8014
    self size to:2 by:-1 do:[:endIndex |
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8015
        |rndIndex t|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8016
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8017
        rndIndex := Random nextIntegerBetween:1 and:endIndex.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8018
        "/ exchange
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8019
        t := self at:rndIndex.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8020
        self at:rndIndex put:(self at:endIndex).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8021
        self at:endIndex put:t.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8022
    ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8023
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8024
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8025
     (1 to:10) asOrderedCollection randomShuffle
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8026
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8027
     |c| c := (1 to:100) asOrderedCollection . TimeDuration toRun:[ c randomShuffle ] 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8028
     |c| c := (1 to:1000) asOrderedCollection . TimeDuration toRun:[ c randomShuffle ] 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8029
     |c| c := (1 to:10000) asOrderedCollection . TimeDuration toRun:[ c randomShuffle ] 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8030
     |c| c := (1 to:100000) asOrderedCollection . TimeDuration toRun:[ c randomShuffle ] 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8031
     |c| c := (1 to:1000000) asOrderedCollection . TimeDuration toRun:[ c randomShuffle ] 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8032
     |c| c := (1 to:10000000) asOrderedCollection . TimeDuration toRun:[ c randomShuffle ] 
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8033
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8034
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8035
    "how random are we ? (should all be around 1000000/24.0 i.e. 41666.6):
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8036
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8037
     |a score|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8038
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8039
     a := 'abcd'.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8040
     score := DictionaryWithDefault newWithDefaultValue:0.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8041
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8042
     1000000 times do:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8043
         |sorted|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8044
         sorted := a copy randomShuffle.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8045
         score at:sorted put:(score at:sorted)+1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8046
     ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8047
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8048
     score keys asSortedCollection do:[:k |
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8049
         Transcript showCR:('%1: %2' bindWith:k with:(score at:k)).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8050
     ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8051
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8052
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8053
    "Modified: / 22-10-2008 / 15:37:48 / cg"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8054
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8055
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8056
reverse
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8057
    "destructively reverse the order of the elements inplace.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8058
     WARNING: this is a destructive operation, which modifies the receiver.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8059
              Please use reversed (with a d) for a functional version."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8060
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8061
    |lowIndex "{ Class: SmallInteger }"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8062
     hiIndex  "{ Class: SmallInteger }"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8063
     t1 t2|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8064
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8065
    hiIndex := self size.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8066
    lowIndex := 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8067
    [lowIndex < hiIndex] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8068
        t1 := self at:lowIndex.  t2 := self at:hiIndex.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8069
        self at:lowIndex put:t2.  self at:hiIndex put:t1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8070
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8071
        lowIndex := lowIndex + 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8072
        hiIndex := hiIndex - 1
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8073
    ]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8074
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8075
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8076
     #(4 5 6 7 7) reverse
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8077
     #(1 4 7 10 2 5) asOrderedCollection reverse
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8078
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8079
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8080
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8081
reversed
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8082
    "return a copy with elements in reverse order"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8083
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8084
    ^ self copy reverse
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8085
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8086
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8087
     #(4 5 6 7 7) reversed
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8088
     #(1 4 7 10 2 5) asOrderedCollection reversed
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8089
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8090
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8091
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8092
sort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8093
    "sort the collection inplace. The elements are compared using
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8094
     '<' i.e. they should offer a magnitude-like protocol.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8095
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8096
     The implementation uses the quicksort algorithm, which may not be
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8097
     the best possible for all situations (quickSort has O-square worst
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8098
     case behavior)."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8099
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8100
    self quickSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8101
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8102
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8103
     #(1 16 7 98 3 19 4 0) sort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8104
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8105
     |data|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8106
     data := Random new next:100000.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8107
     Transcript show:'sort random  '; showCR:(Time millisecondsToRun:[data sort]).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8108
     Transcript show:'sort sorted  '; showCR:(Time millisecondsToRun:[data sort]).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8109
     data reverse.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8110
     Transcript show:'sort reverse '; showCR:(Time millisecondsToRun:[data sort]).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8111
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8112
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8113
    "Modified: 21.8.1997 / 18:31:52 / cg"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8114
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8115
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8116
sort:sortBlock
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8117
    "sort the collection inplace using the 2-arg block sortBlock
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8118
     for comparison. This allows any sort criteria to be implemented.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8119
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8120
     The implementation uses the quicksort algorithm, which may not be
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8121
     the best possible for all situations (quickSort has O-square worst
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8122
     case behavior)."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8123
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8124
    self quickSort:sortBlock
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8125
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8126
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8127
     #(1 16 7 98 3 19 4 0) sort:[:a :b | a < b]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8128
     #(1 16 7 98 3 19 4 0) sort:[:a :b | a > b]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8129
     #(1 -1 16 -16 7 -7 98 -98) sort:[:a :b | a < b]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8130
     #(1 -1 16 -16 7 -7 98 -98) sort:[:a :b | a abs < b abs]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8131
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8132
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8133
    "Modified: / 27.10.1997 / 20:03:22 / cg"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8134
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8135
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8136
sort:sortBlock with:aCollection
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8137
    "sort the collection inplace using the 2-arg block sortBlock
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8138
     for comparison. Also reorder the elements in aCollection.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8139
     Use this, when you have a key collection to sort some other collection with.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8140
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8141
     The implementation uses the quicksort algorithm, which may not be
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8142
     the best possible for all situations (quickSort has O-square worst
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8143
     case behavior)."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8144
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8145
    self quickSort:sortBlock with:aCollection
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8146
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8147
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8148
     |c1 c2|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8149
     c1 := #(1 16 7 9).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8150
     c2 := #('one' 'sixteen' 'seven' 'nine').
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8151
     c1 sort:[:a :b | a > b] with:c2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8152
     c1 printNL.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8153
     c2 printNL
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8154
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8155
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8156
    "Modified: 21.8.1997 / 18:32:11 / cg"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8157
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8158
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8159
sortByApplying:aBlock
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8160
    "Sort my contents inplace based on the value of what aBlock returns for each element.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8161
     Similar to, but even more flexible than sortBySelector."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8162
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8163
    ^ self sort:[:a :b | (aBlock value:a) < (aBlock value:b)]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8164
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8165
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8166
     replace all uses of sort as in:
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8167
        ... sort:[:a :b | a foo < b foo]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8168
     by:
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8169
        ... sortByApplying:[:each | each foo]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8170
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8171
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8172
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8173
sortBySelector:aSelector
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8174
    "Sort my contents inplace based on the value of what aSelector returns when sent to my
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8175
     elements. Sorting by a selector is so common, that its worth a separate utility"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8176
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8177
    ^ self sort:[:a :b | (a perform:aSelector) < (b perform:aSelector)]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8178
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8179
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8180
     replace all uses of sort as in:
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8181
        ... sort:[:a :b | a foo < b foo]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8182
     by:
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8183
        ... sortBySelector:#foo
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8184
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8185
     find these by searching for code matching (code-search in the browsers method list):
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8186
        `@e sort:[:a :b | a `@msg < b `@msg ]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8187
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8188
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8189
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8190
sortWith:aCollection
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8191
    "sort the receiver collection inplace, using '<' to compare elements.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8192
     Also, the elements of aCollection are reordered with it.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8193
     Use this, when you have a key collection to sort another collection with.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8194
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8195
     The implementation uses the quicksort algorithm, which may not be
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8196
     the best possible for all situations (quickSort has O-square worst
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8197
     case behavior)."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8198
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8199
    self quickSortWith:aCollection
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8200
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8201
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8202
     |indices names|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8203
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8204
     names := #('nine' 'five' 'eight' 'one' 'four' 'two') copy.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8205
     indices := #(9 5 8 1 4 2) copy.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8206
     indices sortWith:names.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8207
     names.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8208
     indices     
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8209
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8210
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8211
    "Modified (comment): / 18-01-2012 / 11:30:01 / cg"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8212
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8213
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8214
sortedBy:aBlock
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8215
    "Create a copy that is sorted.  Sort criteria is the block that accepts two arguments.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8216
     When the block is true, the first arg goes first ([:a :b | a > b] sorts in descending order)."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8217
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8218
    ^ (self asSortedCollection: aBlock) asOrderedCollection
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8219
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8220
    "Modified: / 22-10-2008 / 21:25:07 / cg"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8221
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8222
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8223
stableSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8224
    "sort the collection inplace. The elements are compared using
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8225
     '<=' i.e. they should offer a magnitude-like protocol.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8226
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8227
     Use a stable sort algorithm - i.e. elements having an equal key will keep
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8228
     their previous order."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8229
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8230
    self mergeSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8231
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8232
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8233
     #(1 16 7 98 3 19 4 0) stableSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8234
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8235
     |data|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8236
     data := Random new next:100000.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8237
     Transcript show:'sort random  '; showCR:(Time millisecondsToRun:[data stableSort]).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8238
     Transcript show:'sort sorted  '; showCR:(Time millisecondsToRun:[data stableSort]).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8239
     data reverse.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8240
     Transcript show:'sort reverse '; showCR:(Time millisecondsToRun:[data stableSort]).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8241
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8242
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8243
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8244
stableSort:sortBlock
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8245
    "sort the collection inplace using the 2-arg block sortBlock
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8246
     for comparison. This allows any sort criteria to be implemented.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8247
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8248
     Use a stable sort algorithm - i.e. elements having an equal key will keep
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8249
     their previous order.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8250
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8251
     NOTE: the sort algorithm will be stable, if the sortblock uses #< or #> for comparison!!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8252
           Do not use #<= of #>= if you want stable behavior."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8253
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8254
    self mergeSort:sortBlock
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8255
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8256
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8257
     The 4@bla points keep their order:
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8258
         {(4@1). (8@2). (4@2). (3@3). (4@3). (-1@4). (17@17). (19@19).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8259
          (12 @ 12). (13@13). (14@14). (15@15). (10@10). (8@8).} stableSort:[:a :b | a x < b x]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8260
        
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8261
     But not with quickSort:
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8262
         {(4@1). (8@2). (4@2). (3@3). (4@3). (-1@4). (17@17). (19@19).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8263
          (12 @ 12). (13@13). (14@14). (15@15). (10@10). (8@8).} sort:[:a :b | a x < b x]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8264
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8265
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8266
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8267
topologicalSort:sortBlock
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8268
    "sort the collection inplace using a sloooow sort algorithm.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8269
     This algorithm has O-square runtime behavior and should be used only
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8270
     in special situations.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8271
     It compares all elements, thus can be used when a>b, b>c does NOT imply
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8272
     a>c (for example, to sort classes by inheritance)
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8273
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8274
     In all other situations, use #sort; which implements the quicksort algorithm.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8275
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8276
     If there are cycles, this algorithm may loop endless!!   
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8277
     Note: consider using Collection>>#topologicalSort, which is faster and does not do endless loop.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8278
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8279
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8280
    |smallestIndex "{ Class: SmallInteger }"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8281
     end           "{ Class: SmallInteger }"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8282
     index2        "{ Class: SmallInteger }"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8283
     smallest thisOne|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8284
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8285
    "this is just a q&d hack - there must be better implementations for this ;-)"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8286
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8287
    end := self size.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8288
    1 to:end-1 do:[:index |
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8289
        smallest := self at:index.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8290
        smallestIndex := index.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8291
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8292
        index2 := index + 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8293
        [
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8294
            thisOne := self at:index2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8295
            (index2 ~~ smallestIndex
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8296
            and:[sortBlock value:thisOne value:smallest]) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8297
                smallestIndex := index2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8298
                smallest := thisOne.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8299
                index2 := index + 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8300
            ] ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8301
                index2 := index2 + 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8302
            ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8303
        ] doWhile:[index2 <= end].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8304
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8305
"/        (index + 1) to:end do:[:index2 |
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8306
"/            thisOne := self at:index2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8307
"/            (sortBlock value:thisOne value:smallest) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8308
"/                smallestIndex := index2.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8309
"/                smallest := thisOne
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8310
"/            ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8311
"/        ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8312
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8313
        (smallestIndex ~~ index) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8314
            thisOne := self at:index.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8315
            self at:index put:smallest.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8316
            self at:smallestIndex put:thisOne
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8317
        ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8318
    ]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8319
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8320
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8321
     #(1 16 7 98 3 19 4 0) topologicalSort:[:a :b | a < b]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8322
     #(1 16 7 98 3 19 4 0) sort:[:a :b | a < b]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8323
     Smalltalk allClasses asArray topologicalSort:[:a :b | a == b superclass]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8324
     Smalltalk allClasses asArray topologicalSort:[:a :b | b isSubclassOf:a]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8325
     Smalltalk allClasses asArray sort:[:a :b | b isSubclassOf:a]
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8326
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8327
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8328
    "Modified: 21.8.1997 / 18:30:49 / cg"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8329
! !
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8330
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8331
!SequenceableCollection methodsFor:'sorting algorithms'!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8332
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8333
heapSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8334
    "sort the collection inplace. The elements are compared using
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8335
     '<' i.e. they should offer a magnitude-like protocol.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8336
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8337
     Heap sort is an unstable sorting algorithm, i.e. elements with the same sort key
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8338
     don't keep their order.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8339
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8340
     The implementation uses the heapsort algorithm, which has a complexity
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8341
     of O(n*log(n)) for both average and worst case."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8342
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8343
    self heapSortFrom:1 to:self size
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8344
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8345
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8346
     'franz jagt im komplett verwahrlosten taxi quer durch deutschland' copy heapSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8347
     #( 1 2 3 4 5 6 7 8 9) heapSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8348
     #( 1 2 3 4 5 6 7 8 9) reversed heapSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8349
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8350
     |data|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8351
     data := Random new next:500000.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8352
     Transcript show:'heap random  '; showCR:(Time millisecondsToRun:[data heapSort]).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8353
     data inject:0 into:[:lastElement :each | lastElement > each ifTrue:[self halt]. each].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8354
     Transcript show:'heap sorted  '; showCR:(Time millisecondsToRun:[data heapSort]).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8355
     data inject:0 into:[:lastElement :each | lastElement > each ifTrue:[self halt]. each].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8356
     data reverse.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8357
     Transcript show:'heap reverse '; showCR:(Time millisecondsToRun:[data heapSort]).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8358
     data inject:0 into:[:lastElement :each | lastElement > each ifTrue:[self halt]. each].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8359
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8360
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8361
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8362
heapSort:sortBlock
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8363
    "sort the collection inplace. The elements are compared using
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8364
     sortBlock.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8365
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8366
     Heap sort is an unstable sorting algorithm, i.e. elements with the same sort key
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8367
     don't keep their order.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8368
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8369
     The implementation uses the heapsort algorithm, which has a complexity
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8370
     of O(n*log(n)) for both average and worst case."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8371
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8372
    self heapSort:sortBlock from:1 to:self size
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8373
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8374
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8375
heapSort:sortBlock from:begin to:end
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8376
    "sort the collection inplace. The elements are compared using
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8377
     the sortBlock.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8378
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8379
     Heap sort is an unstable sorting algorithm, i.e. elements with the same sort key
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8380
     don't keep their order.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8381
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8382
     The implementation uses the heapsort algorithm, which has a complexity
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8383
     of O(n*log(n)) for average and worst case."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8384
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8385
    |cRun  "{Class: SmallInteger}"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8386
     parent     "{Class: SmallInteger}"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8387
     child      "{Class: SmallInteger}"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8388
     eRun       "{Class: SmallInteger}"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8389
     childE childERight temp done size|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8390
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8391
    eRun := end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8392
    size := eRun+1-begin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8393
    size <= 1 ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8394
        ^ self.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8395
    ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8396
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8397
    cRun := size // 2 + 1.                      "position of the last parent node"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8398
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8399
    [true] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8400
        cRun > begin ifTrue:[               "Phase 1: do the heap creation"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8401
            cRun := cRun - 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8402
            temp := self at:cRun.           "parent value is in temp"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8403
        ] ifFalse:[                             "Phase 2: heap selection"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8404
            temp := self at:eRun.               "save the last value on the heap"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8405
            self at:eRun put:(self at:begin).   "put the largest value so far to the end of the heap"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8406
            eRun := eRun - 1.                   "make new heap smaller"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8407
            eRun == begin ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8408
                "the heap is empty - we are done"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8409
                self at:begin put:temp.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8410
                ^ self.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8411
            ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8412
        ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8413
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8414
        parent := cRun.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8415
        child := parent * 2.                    "parents left child"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8416
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8417
        "Sift operation - push temp down the heap"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8418
        done := false.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8419
        [done not and:[child <= eRun]] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8420
            childE := self at:child.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8421
            "choose the largest child"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8422
            (child < eRun and:[sortBlock value:childE value:(childERight := self at:child+1)]) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8423
                child := child + 1.             "the right child is larger"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8424
                childE := childERight.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8425
            ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8426
            (sortBlock value:temp value:childE) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8427
                self at:parent put:childE.      "move the largest child up"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8428
                parent := child.                "make child the new parent"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8429
                child := parent * 2.            "get next child"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8430
            ] ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8431
                done := true.                   "now we know where to put temp"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8432
            ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8433
        ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8434
        self at:parent put:temp.                "save temp in heap"    
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8435
    ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8436
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8437
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8438
heapSortFrom:begin to:end
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8439
    "sort the collection inplace. The elements are compared using
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8440
     '<' i.e. they should offer a magnitude-like protocol.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8441
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8442
     Heap sort is an unstable sorting algorithm, i.e. elements with the same sort key
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8443
     don't keep their order.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8444
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8445
     The implementation uses the heapsort algorithm, which has a complexity
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8446
     of O(n*log(n)) for average and worst case."
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8447
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8448
    |cRun  "{Class: SmallInteger}"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8449
     parent     "{Class: SmallInteger}"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8450
     child      "{Class: SmallInteger}"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8451
     eRun       "{Class: SmallInteger}"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8452
     childE childERight temp done size|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8453
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8454
    eRun := end.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8455
    size := eRun+1-begin.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8456
    size <= 1 ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8457
        ^ self.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8458
    ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8459
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8460
    cRun := size // 2 + 1.                      "position of the last parent node"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8461
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8462
    [true] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8463
        cRun > begin ifTrue:[               "Phase 1: do the heap creation"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8464
            cRun := cRun - 1.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8465
            temp := self at:cRun.           "parent value is in temp"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8466
        ] ifFalse:[                             "Phase 2: heap selection"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8467
            temp := self at:eRun.               "save the last value on the heap"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8468
            self at:eRun put:(self at:begin).   "put the largest value so far to the end of the heap"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8469
            eRun := eRun - 1.                   "make new heap smaller"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8470
            eRun == begin ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8471
                "the heap is empty - we are done"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8472
                self at:begin put:temp.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8473
                ^ self.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8474
            ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8475
        ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8476
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8477
        parent := cRun.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8478
        child := parent * 2.                    "parents left child"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8479
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8480
        "Sift operation - push temp down the heap"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8481
        done := false.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8482
        [done not and:[child <= eRun]] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8483
            childE := self at:child.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8484
            "choose the largest child"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8485
            (child < eRun and:[childE < (childERight := self at:child+1)]) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8486
                child := child + 1.             "the right child is larger"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8487
                childE := childERight.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8488
            ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8489
            temp < childE ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8490
                self at:parent put:childE.      "move the largest child up"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8491
                parent := child.                "make child the new parent"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8492
                child := parent * 2.            "get next child"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8493
            ] ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8494
                done := true.                   "now we know where to put temp"
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8495
            ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8496
        ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8497
        self at:parent put:temp.                "save temp in heap"    
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8498
    ].
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8499
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8500
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8501
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8502
     'franz jagt im komplett verwahrlosten taxi quer durch deutschland' copy heapSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8503
     #( 1 2 3 4 5 6 7 8 9) copy heapSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8504
     #( 1 2 3 4 5 6 7 8 9) reversed heapSort
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8505
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8506
     |data|
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8507
     data := Random new next:500000.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8508
     Transcript show:'heap random  '; showCR:(Time millisecondsToRun:[data heapSortFrom:1 to:data size]).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8509
     Transcript show:'heap sorted  '; showCR:(Time millisecondsToRun:[data heapSortFrom:1 to:data size]).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8510
     data reverse.
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8511
     Transcript show:'heap reverse '; showCR:(Time millisecondsToRun:[data heapSortFrom:1 to:data size]).
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8512
    "
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8513
!
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8514
14100
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8515
insertionSort
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8516
    "sort the collection using a insertionSort algorithm.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8517
     The elements are compared using'#<'
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8518
     i.e. they should offer a magnitude-like protocol.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8519
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8520
     Insertion sort sort is a stable sorting algorithm, i.e. elements with the same sort key
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8521
     keep their order (if you use e.g. #<) for comparison.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8522
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8523
     The implementation uses the insertionSort algorithm, 
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8524
     which is slow for large collections O(n*n), but good for small or
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8525
     almost sorted collections O(N).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8526
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8527
     See also #quickSort for other sort algorithms
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8528
     with different worst- and average case behavior)"
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8529
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8530
    self insertionSort:[:a :b | a < b]
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8531
!
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8532
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8533
insertionSort:sortBlock
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8534
    |stop|
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8535
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8536
    stop := self size.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8537
    (stop > 1) ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8538
        self insertionSort:sortBlock from:1 to:stop
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8539
    ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8540
!
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8541
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8542
insertionSort:sortBlock from:inBegin to:inEnd
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8543
    "binary insertion sort.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8544
     The implementation uses the insertionSort algorithm, 
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8545
     which is slow for large collections O(n*n), but good for small or
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8546
     almost sorted collections O(N)."
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8547
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8548
    |begin      "{Class: SmallInteger}"
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8549
     end        "{Class: SmallInteger}"
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8550
     prevIdx    "{Class: SmallInteger}"
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8551
     temp|
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8552
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8553
    begin := inBegin+1.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8554
    end := inEnd.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8555
    begin to:end do:[:idx|
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8556
        temp := self at:idx.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8557
        prevIdx := idx-1.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8558
        "this is stable if #< or #> ist used for comparison (and not #<= or #>=)"
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8559
        [prevIdx >= inBegin and:[sortBlock value:temp value:(self at:prevIdx)]] whileTrue:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8560
            self at:prevIdx+1 put:(self at:prevIdx).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8561
            prevIdx := prevIdx - 1.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8562
        ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8563
        (prevIdx+1) ~~ idx ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8564
            self at:prevIdx+1 put:temp.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8565
        ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8566
    ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8567
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8568
    "
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8569
     |data|
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8570
     data := Random new next:1000.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8571
     Transcript show:'merge random  '; showCR:(Time millisecondsToRun:[data mergeSort]).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8572
     Transcript show:'merge sorted  '; showCR:(Time millisecondsToRun:[data mergeSort]).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8573
     data reverse.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8574
     Transcript show:'merge reverse '; showCR:(Time millisecondsToRun:[data mergeSort]).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8575
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8576
     data := Random new next:1000.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8577
     Transcript show:'insert random  '; showCR:(Time millisecondsToRun:[data insertionSort]).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8578
     Transcript show:'insert sorted  '; showCR:(Time millisecondsToRun:[data insertionSort]).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8579
     data reverse.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8580
     Transcript show:'insert reverse '; showCR:(Time millisecondsToRun:[data insertionSort]).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8581
    "
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8582
!
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8583
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  8584
mergeSort
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8585
    "sort the collection using a mergeSort algorithm.
14100
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8586
     The elements are compared using '#<'
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  8587
     i.e. they should offer a magnitude-like protocol.
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  8588
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8589
     Merge sort is a stable sorting algorithm, i.e. elements with the same sort key
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8590
     keep their order.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8591
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  8592
     The implementation uses the mergesort algorithm, which may not be
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8593
     the best possible for all situations
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8594
     See also #quickSort for other sort algorithms
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  8595
     with different worst- and average case behavior)"
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  8596
12888
5de3c4d8bd8b changed: #mergeSort
Michael Beyl <mb@exept.de>
parents: 12750
diff changeset
  8597
    self mergeSort:[:a :b | a < b]
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  8598
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  8599
    "
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  8600
     #(1 16 7 98 3 19 4 0) mergeSort
12888
5de3c4d8bd8b changed: #mergeSort
Michael Beyl <mb@exept.de>
parents: 12750
diff changeset
  8601
     #(1 16 7 98 7 3 19 4 0) mergeSort 
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  8602
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8603
     |random data|
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8604
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8605
     random := Random new next:500000.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8606
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8607
     data := random copy.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8608
     Transcript show:'merge random  '; showCR:(Time millisecondsToRun:[data mergeSort]).
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8609
     Transcript show:'merge sorted  '; showCR:(Time millisecondsToRun:[data mergeSort]).
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8610
     data := data reverse.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8611
     Transcript show:'merge reverse '; showCR:(Time millisecondsToRun:[data mergeSort]).
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8612
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8613
     data := random copy.
14100
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8614
     Transcript show:'quick block random  '; showCR:(Time millisecondsToRun:[data quickSort:[:a :b| a < b]]).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8615
     Transcript show:'quick block sorted  '; showCR:(Time millisecondsToRun:[data quickSort:[:a :b| a < b]]).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8616
     data := data reverse.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8617
     Transcript show:'quick block reverse '; showCR:(Time millisecondsToRun:[data quickSort:[:a :b| a < b]]).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8618
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8619
     data := random copy.
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8620
     Transcript show:'quick random  '; showCR:(Time millisecondsToRun:[data quickSort]).
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8621
     Transcript show:'quick sorted  '; showCR:(Time millisecondsToRun:[data quickSort]).
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8622
     data := data reverse.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8623
     Transcript show:'quick reverse '; showCR:(Time millisecondsToRun:[data quickSort]).
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  8624
    "
7636
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8625
!
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8626
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8627
mergeSort:sortBlock
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8628
    "sort the collection using a mergeSort algorithm.
14100
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8629
     The elements are compared using sortBlock
7636
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8630
     i.e. they should offer a magnitude-like protocol.
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8631
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8632
     Merge sort is a stable sorting algorithm, i.e. elements with the same sort key
14100
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8633
     keep their order (if you use e.g. #< for comparison).
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8634
7636
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8635
     The implementation uses the mergesort algorithm, which may not be
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8636
     the best possible for all situations
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8637
     See also #quickSort for other sort algorithms
7636
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8638
     with different worst- and average case behavior)"
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8639
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8640
    |stop|
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8641
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8642
    stop := self size.
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8643
    (stop > 1) ifTrue:[
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8644
        self mergeSort:sortBlock from:1 to:stop
14100
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8645
    ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8646
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8647
    "
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8648
     |random data|
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8649
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8650
     random := Random new next:500000.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8651
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8652
     data := random copy.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8653
     Transcript show:'merge block random  '; showCR:(Time millisecondsToRun:[data mergeSort:[:a :b| a <= b]]).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8654
     Transcript show:'merge block sorted  '; showCR:(Time millisecondsToRun:[data mergeSort:[:a :b| a <= b]]).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8655
     data := data reverse.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8656
     Transcript show:'merge block reverse '; showCR:(Time millisecondsToRun:[data mergeSort:[:a :b| a <= b]]).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8657
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8658
     data := random copy.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8659
     Transcript show:'quick block random  '; showCR:(Time millisecondsToRun:[data quickSort:[:a :b| a <= b]]).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8660
     Transcript show:'quick block sorted  '; showCR:(Time millisecondsToRun:[data quickSort:[:a :b| a <= b]]).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8661
     data := data reverse.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8662
     Transcript show:'quick block reverse '; showCR:(Time millisecondsToRun:[data quickSort:[:a :b| a <= b]]).
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8663
   "
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8664
!
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8665
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8666
mergeSort:aBlock from:startIndex to:stopIndex 
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8667
    "Sort the given range of indices using the mergesort algorithm.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8668
     Mergesort is a worst-case O(N log N) sorting algorithm that usually does only half
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8669
     as many comparisons as heapsort or quicksort.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8670
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8671
     Merge sort is a stable sorting algorithm, i.e. elements with the same sort key
14100
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8672
     keep their order (if you use e.g. #< or #> for comparison)."
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  8673
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8674
    "Details: recursively split the range to be sorted into two halves,
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8675
     mergesort each half, then merge the two halves together.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8676
     An extra copy of the data is used as temporary storage and successive merge phases copy data back
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8677
     and forth between the receiver and this copy.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8678
     The recursion is set up so that the final merge is performed into the receiver,
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  8679
     resulting in the receiver being completely sorted."
14100
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8680
    
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8681
    |mySize|
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8682
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8683
    mySize := self size.
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8684
    mySize <= 1 ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8685
        ^ self
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8686
    ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8687
    startIndex = stopIndex ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8688
        ^ self
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8689
    ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8690
    (startIndex >= 1 and:[ startIndex < stopIndex ]) ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8691
        self error:'bad start index'
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8692
    ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8693
    stopIndex > mySize ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8694
        self error:'bad stop index'
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8695
    ].
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8696
    self
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8697
        mergeSortFrom:startIndex
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8698
        to:stopIndex
Stefan Vogel <sv@exept.de>
parents: 14099
diff changeset
  8699
        by:aBlock.
7636
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8700
!
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8701
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8702
quickSort
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8703
    "sort the collection inplace. The elements are compared using
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8704
     '<' i.e. they should offer a magnitude-like protocol.
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8705
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8706
     Quick sort is an unstable sorting algorithm, i.e. elements with the same sort key
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8707
     don't keep their order.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8708
7636
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8709
     The implementation uses the quicksort algorithm, which may not be
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8710
     the best possible for all situations (quickSort has O-square worst
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8711
     case behavior). See also #randomizedSort for a version with better
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8712
     worstCase behavior (but worse average & bestCase behavior)"
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8713
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8714
    |stop|
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8715
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8716
    stop := self size.
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8717
    (stop > 1) ifTrue:[
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8718
        self quickSortFrom:1 to:stop
7636
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8719
    ]
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8720
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8721
    "
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8722
     #(1 16 7 98 3 19 4 0) sort
5358
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  8723
79b21b5a4783 added #isSorted;
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
  8724
     |data|
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8725
     data := Random new next:500001.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8726
     Transcript show:'quick random  '; showCR:(Time millisecondsToRun:[data quickSort]).
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8727
     data inject:0 into:[:lastElement :each | lastElement > each ifTrue:[self halt]. each].
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8728
     Transcript show:'quick sorted  '; showCR:(Time millisecondsToRun:[data quickSort]).
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8729
     data reverse.
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8730
     Transcript show:'quick reverse '; showCR:(Time millisecondsToRun:[data quickSort]).
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8731
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8732
     |data rg|  
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8733
     rg := Random new.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8734
     data := Array new:500001.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8735
     1 to:data size do:[:i |
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8736
        data at:i put:(rg nextIntegerBetween:1 and:100).
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8737
     ].
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8738
     Transcript show:'quick random  '; showCR:(Time millisecondsToRun:[data quickSort]).
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8739
     data inject:0 into:[:lastElement :each | lastElement > each ifTrue:[self halt]. each].
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8740
     Transcript show:'quick sorted  '; showCR:(Time millisecondsToRun:[data quickSort]).
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8741
     data reverse.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8742
     Transcript show:'quick reverse '; showCR:(Time millisecondsToRun:[data quickSort]).
7636
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8743
    "
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8744
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8745
    "Modified: 21.8.1997 / 18:31:52 / cg"
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8746
!
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8747
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8748
quickSort:sortBlock
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8749
    "sort the collection inplace using the 2-arg block sortBlock
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8750
     for comparison. This allows any sort criteria to be implemented.
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8751
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8752
     Quick sort is an unstable sorting algorithm, i.e. elements with the same sort key
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8753
     don't keep their order.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8754
7636
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8755
     The implementation uses the quicksort algorithm, which may not be
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8756
     the best possible for all situations (quickSort has O-square worst
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8757
     case behavior). See also #randomizedSort: for a version with better
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8758
     worstCase behavior (but worse average & bestCase behavior)"
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8759
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8760
    |stop|
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8761
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8762
    stop := self size.
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8763
    (stop > 1) ifTrue:[
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8764
        sortBlock numArgs == 3 ifTrue:[
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8765
            "/ TODO: pass a collating policy to aBlock
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8766
            self quickSortFrom:1 to:stop sortBlock:sortBlock policy:(StringCollationPolicy new)
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8767
        ] ifFalse:[
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8768
            self quickSortFrom:1 to:stop sortBlock:sortBlock
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8769
        ]
7636
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8770
    ]
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8771
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8772
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8773
     #(1 16 7 98 3 19 4 0) sort:[:a :b | a < b]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8774
     #(1 16 7 98 3 19 4 0) sort:[:a :b | a > b]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8775
     #(1 -1 16 -16 7 -7 98 -98) sort:[:a :b | a < b]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8776
     #(1 -1 16 -16 7 -7 98 -98) sort:[:a :b | a abs < b abs]
7636
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8777
    "
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8778
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8779
    "Modified: / 27.10.1997 / 20:03:22 / cg"
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8780
!
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8781
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8782
quickSort:sortBlock with:aCollection
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8783
    "sort the collection inplace using the 2-arg block sortBlock
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8784
     for comparison. Also reorder the elements in aCollection.
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8785
     Use this, when you have a key collection to sort some other collection with.
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8786
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8787
     Quick sort is an unstable sorting algorithm, i.e. elements with the same sort key
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8788
     don't keep their order.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8789
7636
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8790
     The implementation uses the quicksort algorithm, which may not be
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8791
     the best possible for all situations (quickSort has O-square worst
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8792
     case behavior). See also #randomizedSort: for a version with better
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8793
     worstCase behavior (but worse average & bestCase behavior)"
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8794
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8795
    |stop|
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8796
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8797
    stop := self size.
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8798
    (stop > 1) ifTrue:[
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8799
        self quickSortFrom:1 to:stop sortBlock:sortBlock with:aCollection
7636
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8800
    ]
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8801
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8802
    "
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8803
     |c1 c2|
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8804
     c1 := #(1 16 7 9).
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8805
     c2 := #('one' 'sixteen' 'seven' 'nine').
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8806
     c1 sort:[:a :b | a > b] with:c2.
14102
Stefan Vogel <sv@exept.de>
parents: 14100
diff changeset
  8807
     Transcript showCR:c1; showCR:c2.
7636
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8808
    "
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8809
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8810
    "Modified: 21.8.1997 / 18:32:11 / cg"
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8811
!
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8812
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8813
quickSortWith:aCollection
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8814
    "sort the receiver collection inplace, using '<' to compare elements.
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8815
     Also, the elements of aCollection are reordered with it.
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8816
     Use this, when you have a key collection to sort another collection with.
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8817
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8818
     Quick sort is an unstable sorting algorithm, i.e. elements with the same sort key
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8819
     don't keep their order.
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8820
7636
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8821
     The implementation uses the quicksort algorithm, which may not be
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8822
     the best possible for all situations (quickSort has O-square worst
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8823
     case behavior)."
7636
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8824
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8825
    |stop|
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8826
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8827
    stop := self size.
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8828
    (stop > 1) ifTrue:[
14099
e7938e9908f3 Speed up quickSort.
Stefan Vogel <sv@exept.de>
parents: 14073
diff changeset
  8829
        self quickSortFrom:1 to:stop with:aCollection
7636
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8830
    ]
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8831
6b5d572305bc allow mergeSort with a sortBlock
Claus Gittinger <cg@exept.de>
parents: 7615
diff changeset
  8832
    "Modified: 21.8.1997 / 18:32:21 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  8833
! !
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  8834
6744
042f0606f7a6 includesKey: pushed to SeqColl
Claus Gittinger <cg@exept.de>
parents: 6736
diff changeset
  8835
!SequenceableCollection methodsFor:'testing'!
042f0606f7a6 includesKey: pushed to SeqColl
Claus Gittinger <cg@exept.de>
parents: 6736
diff changeset
  8836
042f0606f7a6 includesKey: pushed to SeqColl
Claus Gittinger <cg@exept.de>
parents: 6736
diff changeset
  8837
includesKey:anIndex
042f0606f7a6 includesKey: pushed to SeqColl
Claus Gittinger <cg@exept.de>
parents: 6736
diff changeset
  8838
    "return true, if anIndex is a valid key.
042f0606f7a6 includesKey: pushed to SeqColl
Claus Gittinger <cg@exept.de>
parents: 6736
diff changeset
  8839
     NOTICE: in ST-80, this message is only defined for Dictionaries,
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8840
	     however, having a common protocol with indexed collections
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8841
	     often simplifies things."
6744
042f0606f7a6 includesKey: pushed to SeqColl
Claus Gittinger <cg@exept.de>
parents: 6736
diff changeset
  8842
042f0606f7a6 includesKey: pushed to SeqColl
Claus Gittinger <cg@exept.de>
parents: 6736
diff changeset
  8843
    anIndex isInteger ifFalse:[^ false].
042f0606f7a6 includesKey: pushed to SeqColl
Claus Gittinger <cg@exept.de>
parents: 6736
diff changeset
  8844
    ^ (anIndex >= 1) and:[anIndex <= self size]
042f0606f7a6 includesKey: pushed to SeqColl
Claus Gittinger <cg@exept.de>
parents: 6736
diff changeset
  8845
042f0606f7a6 includesKey: pushed to SeqColl
Claus Gittinger <cg@exept.de>
parents: 6736
diff changeset
  8846
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8847
     #(1 2 3) includesKey:4
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8859
diff changeset
  8848
     #(1 2 3) includesKey:3
6744
042f0606f7a6 includesKey: pushed to SeqColl
Claus Gittinger <cg@exept.de>
parents: 6736
diff changeset
  8849
    "
042f0606f7a6 includesKey: pushed to SeqColl
Claus Gittinger <cg@exept.de>
parents: 6736
diff changeset
  8850
! !
042f0606f7a6 includesKey: pushed to SeqColl
Claus Gittinger <cg@exept.de>
parents: 6736
diff changeset
  8851
8396
b13503dbc53c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8373
diff changeset
  8852
!SequenceableCollection methodsFor:'visiting'!
b13503dbc53c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8373
diff changeset
  8853
b13503dbc53c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8373
diff changeset
  8854
acceptVisitor:aVisitor with:aParameter
b13503dbc53c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8373
diff changeset
  8855
b13503dbc53c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8373
diff changeset
  8856
    ^ aVisitor visitSequenceableCollection:self with:aParameter
b13503dbc53c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8373
diff changeset
  8857
! !
b13503dbc53c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8373
diff changeset
  8858
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  8859
!SequenceableCollection class methodsFor:'documentation'!
628
7aa563e4c64a version at the end
Claus Gittinger <cg@exept.de>
parents: 602
diff changeset
  8860
14138
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
  8861
version
14947
e9a0049c0ef1 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14893
diff changeset
  8862
    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.332 2013-03-25 12:26:12 cg Exp $'
14138
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
  8863
!
fbae7edde573 added: #replaceFrom:to:withObject:
Claus Gittinger <cg@exept.de>
parents: 14130
diff changeset
  8864
12051
Claus Gittinger <cg@exept.de>
parents: 12037
diff changeset
  8865
version_CVS
14947
e9a0049c0ef1 class: SequenceableCollection
Claus Gittinger <cg@exept.de>
parents: 14893
diff changeset
  8866
    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.332 2013-03-25 12:26:12 cg Exp $'
628
7aa563e4c64a version at the end
Claus Gittinger <cg@exept.de>
parents: 602
diff changeset
  8867
! !
6820
1db0bbe26d31 + writeStream
Claus Gittinger <cg@exept.de>
parents: 6749
diff changeset
  8868
14610
27ccd628f537 class: SequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 14329
diff changeset
  8869
4197
8ae90a572914 raise a special signal, when a literalencodings class
Claus Gittinger <cg@exept.de>
parents: 4154
diff changeset
  8870
SequenceableCollection initialize!