SequenceableCollection.st
author Claus Gittinger <cg@exept.de>
Sat, 04 Oct 1997 19:01:30 +0200
changeset 2998 930360fb3f12
parent 2980 a662ffcfad1d
child 3003 0f66385bbbd2
permissions -rw-r--r--
#size is not really obsolete
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
159
514c749165c3 *** empty log message ***
claus
parents: 118
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
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
a27a279701f8 Initial revision
claus
parents:
diff changeset
    13
Collection subclass:#SequenceableCollection
911
8bf5e91a7f68 Use doWhile: instead of whileTrue in topological sort (is compiled to inlined code).
Stefan Vogel <sv@exept.de>
parents: 890
diff changeset
    14
	instanceVariableNames:''
8bf5e91a7f68 Use doWhile: instead of whileTrue in topological sort (is compiled to inlined code).
Stefan Vogel <sv@exept.de>
parents: 890
diff changeset
    15
	classVariableNames:''
8bf5e91a7f68 Use doWhile: instead of whileTrue in topological sort (is compiled to inlined code).
Stefan Vogel <sv@exept.de>
parents: 890
diff changeset
    16
	poolDictionaries:''
8bf5e91a7f68 Use doWhile: instead of whileTrue in topological sort (is compiled to inlined code).
Stefan Vogel <sv@exept.de>
parents: 890
diff changeset
    17
	category:'Collections-Abstract'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    18
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    19
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
    20
!SequenceableCollection class methodsFor:'documentation'!
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    21
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    22
copyright
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    23
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    24
 COPYRIGHT (c) 1989 by Claus Gittinger
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
    25
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    26
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    27
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    28
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    29
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    30
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    31
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    32
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    33
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    34
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    35
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    36
documentation
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    37
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    38
    SequenceableCollections have ordered elements which can be accessed via
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    39
    a numeric index. 
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    40
    SequenceableCollection is an abstract class - there are no instances of 
1385
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    41
    it in the system. 
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    42
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    43
    The methods found here assume that implementations of (at least)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    44
    #at:/#at:put: are implemented (which are always found in Object for
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    45
    indexable objects).
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    46
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    47
    For performance, some subclasses redefine more methods, knowing the details
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    48
    of how elements are stored. 
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    49
    Especially, bulk data manipulation (i.e. #replaceFrom:to:with:startingAt:) 
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    50
    and search methods (i.e. #indexOf:startingAt:) are good candidates for this
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    51
    kind of tuneup.
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    52
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    53
    See concrete subclasses (such as OrderedCollection, Array or String).
1289
3abde2c376de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
    54
3abde2c376de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
    55
    [author:]
3abde2c376de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
    56
        Claus Gittinger
1385
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    57
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    58
    [see also:]
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    59
        OrderedCollection Array
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
    60
        CharacterArray String
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    61
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    62
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    63
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
    64
!SequenceableCollection class methodsFor:'instance creation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    65
a27a279701f8 Initial revision
claus
parents:
diff changeset
    66
new:size withAll:element
360
claus
parents: 359
diff changeset
    67
    "return a new collection of size, where all elements are
claus
parents: 359
diff changeset
    68
     initialized to element."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    69
a27a279701f8 Initial revision
claus
parents:
diff changeset
    70
    |newCollection|
a27a279701f8 Initial revision
claus
parents:
diff changeset
    71
a27a279701f8 Initial revision
claus
parents:
diff changeset
    72
    newCollection := self new:size.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    73
    newCollection atAllPut:element.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    74
    ^ newCollection
360
claus
parents: 359
diff changeset
    75
!
claus
parents: 359
diff changeset
    76
claus
parents: 359
diff changeset
    77
withSize:size
claus
parents: 359
diff changeset
    78
    "return a new collection of size.
claus
parents: 359
diff changeset
    79
     For variable size collections, this is different from #new:,
claus
parents: 359
diff changeset
    80
     in that #new: creates an empty collection with preallocated size,
claus
parents: 359
diff changeset
    81
     while #withSize: creates a non empty one."
claus
parents: 359
diff changeset
    82
claus
parents: 359
diff changeset
    83
    |newCollection|
claus
parents: 359
diff changeset
    84
claus
parents: 359
diff changeset
    85
    newCollection := self new:size.
claus
parents: 359
diff changeset
    86
    newCollection grow:size.
claus
parents: 359
diff changeset
    87
    ^ newCollection
claus
parents: 359
diff changeset
    88
claus
parents: 359
diff changeset
    89
    "
claus
parents: 359
diff changeset
    90
     (OrderedCollection new:10) inspect.
claus
parents: 359
diff changeset
    91
     (OrderedCollection withSize:10) inspect.
claus
parents: 359
diff changeset
    92
     (Array new:10) inspect.
claus
parents: 359
diff changeset
    93
     (Array withSize:10) inspect.
claus
parents: 359
diff changeset
    94
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    95
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
    96
a27a279701f8 Initial revision
claus
parents:
diff changeset
    97
!SequenceableCollection methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    98
1366
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
    99
after:anObject
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   100
    "return the element, after anObject.
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   101
     If anObject is not in the receiver, report an error.
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   102
     This depends on #after:ifAbsent: being implemented in a concrete class."
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   103
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   104
    ^ self after:anObject ifAbsent:[self errorValueNotFound:anObject]
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   105
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   106
    "
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   107
     #(4 3 2 1) asOrderedCollection after:3. 
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   108
     #(4 3 2 1) asOrderedCollection after:5 
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   109
     #(4 3 2 1) asOrderedCollection after:1 
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   110
    "
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   111
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   112
    "Created: 10.5.1996 / 13:59:29 / cg"
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   113
    "Modified: 10.5.1996 / 14:03:33 / cg"
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   114
!
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   115
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   116
after:anObject ifAbsent:exceptionBlock
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   117
    "return the element, after anObject. If there is no such element,
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   118
     return the value from exceptionBlock."
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   119
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   120
    ^ self subclassResponsibility
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   121
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   122
    "Created: 10.5.1996 / 14:00:10 / cg"
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   123
!
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   124
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
   125
at:index ifAbsent:exceptionBlock
61
claus
parents: 44
diff changeset
   126
    "return the element at index if valid. 
claus
parents: 44
diff changeset
   127
     If the index is invalid, return the result of evaluating 
302
1f76060d58a4 *** empty log message ***
claus
parents: 293
diff changeset
   128
     the exceptionblock.
1f76060d58a4 *** empty log message ***
claus
parents: 293
diff changeset
   129
     NOTICE: 
1f76060d58a4 *** empty log message ***
claus
parents: 293
diff changeset
   130
	in ST-80, this message is only defined for Dictionaries,
1f76060d58a4 *** empty log message ***
claus
parents: 293
diff changeset
   131
	however, having a common protocol with indexed collections
1f76060d58a4 *** empty log message ***
claus
parents: 293
diff changeset
   132
	often simplifies things."
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
   133
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
   134
    ((index < 1) or:[index > self size]) ifTrue:[
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
   135
	^ exceptionBlock value
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
   136
    ].
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
   137
    ^ self at:index
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
   138
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   139
    "
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   140
     #(1 2 3) at:4 ifAbsent:['no such index']
302
1f76060d58a4 *** empty log message ***
claus
parents: 293
diff changeset
   141
     #(1 2 3) asOrderedCollection at:4 ifAbsent:['no such index'] 
1f76060d58a4 *** empty log message ***
claus
parents: 293
diff changeset
   142
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   143
     (Dictionary with:(#foo -> #bar)
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
   144
		 with:(#frob -> #baz)) 
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
   145
	 at:#foobar ifAbsent:['no such index']
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   146
    "
362
claus
parents: 360
diff changeset
   147
!
claus
parents: 360
diff changeset
   148
1366
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   149
before:anObject
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   150
    "return the element before the argument, anObject.
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   151
     If anObject is not in the receiver, report an error.
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   152
     This depends on #before:ifAbsent: being implemented in a concrete class."
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   153
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   154
    ^ self before:anObject ifAbsent:[self errorValueNotFound:anObject]
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   155
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   156
    "
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   157
     #(4 3 2 1) asOrderedCollection before:3. 
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   158
     #(4 3 2 1) asOrderedCollection before:4 
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   159
     #(4 3 2 1) asOrderedCollection before:0 
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   160
    "
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   161
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   162
    "Created: 10.5.1996 / 14:03:27 / cg"
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   163
    "Modified: 10.5.1996 / 14:03:44 / cg"
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   164
!
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   165
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   166
before:anObject ifAbsent:exceptionBlock
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   167
    "return the element, before anObject. If there is no such element,
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   168
     return the value from exceptionBlock."
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   169
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   170
    ^ self subclassResponsibility
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   171
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   172
    "Created: 10.5.1996 / 14:03:53 / cg"
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   173
!
531162d17aaa lifted #after: / #before:
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   174
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   175
first
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   176
    "return the first element"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   177
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   178
    ^ self at:1
362
claus
parents: 360
diff changeset
   179
!
claus
parents: 360
diff changeset
   180
claus
parents: 360
diff changeset
   181
keyAtEqualValue:value
claus
parents: 360
diff changeset
   182
    "return the index of a value.
claus
parents: 360
diff changeset
   183
     This is normally not used (use indexOf:), but makes the
claus
parents: 360
diff changeset
   184
     protocol more compatible with dictionaries."
claus
parents: 360
diff changeset
   185
claus
parents: 360
diff changeset
   186
    ^ self indexOf:value
claus
parents: 360
diff changeset
   187
!
claus
parents: 360
diff changeset
   188
claus
parents: 360
diff changeset
   189
keyAtEqualValue:value ifAbsent:exceptionBlock
claus
parents: 360
diff changeset
   190
    "return the index of a value.
claus
parents: 360
diff changeset
   191
     This is normally not used (use indexOf:), but makes the
claus
parents: 360
diff changeset
   192
     protocol more compatible with dictionaries."
claus
parents: 360
diff changeset
   193
claus
parents: 360
diff changeset
   194
    ^ self indexOf:value ifAbsent:exceptionBlock
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   195
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   196
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   197
keyAtValue:value
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   198
    "return the index of a value.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   199
     This is normally not used (use indexOf:), but makes the
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   200
     protocol more compatible with dictionaries."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   201
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   202
    ^ self identityIndexOf:value
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   203
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   204
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   205
keyAtValue:value ifAbsent:exceptionBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   206
    "return the index of a value.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   207
     This is normally not used (use indexOf:), but makes the
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   208
     protocol more compatible with dictionaries."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   209
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   210
    ^ self identityIndexOf:value ifAbsent:exceptionBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   211
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   212
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   213
last
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   214
    "return the last element"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   215
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   216
    ^ self at:(self size)
1370
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   217
!
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   218
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   219
upTo:anElement
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   220
    "return a new collection consisting of the receivers elements upTo
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   221
     (but excluding) anElement.
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   222
     If anElement is not in the receiver, the returned collection
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   223
     will consist of all elements of the receiver"
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   224
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   225
    |pos|
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   226
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   227
    pos := self indexOf:anElement.
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   228
    pos == 0 ifTrue:[^ self copy].
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   229
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   230
    ^ self copyFrom:1 to:(pos - 1)
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   231
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   232
    "
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   233
     #(1 2 3 4 5 6 7 8 9) upTo:5  
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   234
     'hello world' upTo:Character space  
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   235
     #(9 8 7 6 5 4 3 2 1) asSortedCollection upTo:5 
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   236
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   237
     raises an error:
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   238
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   239
     (Dictionary new 
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   240
        at:#foo put:'foo';
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   241
        at:#bar put:'bar';
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   242
        at:#baz put:'baz';
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   243
        yourself) upTo:#bar
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   244
                
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   245
    "
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   246
b051117cc302 moved #upTo: down into SeqColl
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
   247
    "Modified: 11.5.1996 / 11:14:05 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   248
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   249
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   250
!SequenceableCollection methodsFor:'adding & removing'!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   251
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   252
add:anObject
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   253
    "append the argument, anObject to the collection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   254
     Return the argument, anObject.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   255
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   256
     Notice, that this is modifies the receiver NOT a copy.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   257
     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
   258
     due to the grow:-message, which is inefficient for fixed size 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   259
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   260
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   261
    |newSize|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   262
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   263
    newSize := self size + 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   264
    self grow:newSize.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   265
    self at:newSize put:anObject.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   266
    ^ anObject
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   267
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   268
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   269
     |a|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   270
     a := #(1 2 3 4 5 6 7 8).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   271
     a add:'hello'.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   272
     a
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   273
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   274
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   275
     |c|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   276
     c := #(1 2 3 4 5 6 7 8) asOrderedCollection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   277
     c add:'hello'.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   278
     c
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   279
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   280
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   281
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   282
add:anElement beforeIndex:index
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   283
    "insert the first argument, anObject into the collection before slot index.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   284
     Return the receiver (sigh - ST-80 compatibility).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   285
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   286
     Notice, that this is modifies the receiver NOT a copy.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   287
     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
   288
     due to the grow:-message, which is inefficient for fixed size 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   289
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   290
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   291
    |newSize|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   292
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   293
    newSize := self size + 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   294
    self grow:newSize.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   295
    self replaceFrom:index + 1 to:newSize with:self startingAt:index.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   296
    self at:index put:anElement
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   297
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   298
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   299
     #(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
   300
    "
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
   301
!
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
   302
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   303
addFirst:anObject
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   304
    "prepend the argument, anObject to the collection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   305
     Return the argument, anObject.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   306
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   307
     Notice, that this is modifies the receiver NOT a copy.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   308
     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
   309
     due to the grow:-message, which is inefficient for fixed size 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   310
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   311
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   312
    |newSize|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   313
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   314
    newSize := self size + 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   315
    self grow:newSize.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   316
    self replaceFrom:2 to:newSize with:self startingAt:1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   317
    self at:1 put:anObject.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   318
    ^ anObject
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   319
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   320
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   321
     |a| 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   322
     a:= #(1 2 3 4 5 6 7 8). 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   323
     a addFirst:'hello'. 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   324
     a 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   325
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   326
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   327
     |c|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   328
     c := #(1 2 3 4 5 6 7 8) asOrderedCollection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   329
     c addFirst:'hello'.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   330
     c
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   331
    "
69
4564b6328136 *** empty log message ***
claus
parents: 61
diff changeset
   332
!
4564b6328136 *** empty log message ***
claus
parents: 61
diff changeset
   333
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   334
remove:anElement ifAbsent:aBlock
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   335
    "search for an object which is equal to anElement;
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   336
     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
   337
     Use equality compare (=) to search for an occurrence.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   338
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   339
     Notice, that this is modifies the receiver NOT a copy.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   340
     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
   341
     due to the grow:-message, which is inefficient for fixed size 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   342
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   343
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   344
    |any 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   345
     dstIndex "{ Class: SmallInteger }"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   346
     sz       "{ Class: SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   347
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   348
    dstIndex := 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   349
    any := false.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   350
    sz := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   351
    1 to:sz do:[:srcIndex |
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   352
        (anElement = (self at:srcIndex)) ifTrue:[
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   353
            any := true
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   354
        ] ifFalse:[
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   355
            (dstIndex ~~ srcIndex) ifTrue:[
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   356
                self at:dstIndex put:(self at:srcIndex)
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   357
            ].
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   358
            dstIndex := dstIndex + 1
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   359
        ]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   360
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   361
    any ifTrue:[
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   362
        self grow:dstIndex - 1.
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   363
        ^ anElement
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   364
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   365
    ^ aBlock value
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   366
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   367
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1421
diff changeset
   368
     #(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
   369
     #(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
   370
     #(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
   371
     #(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
   372
    "
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   373
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   374
    "Modified: 1.2.1997 / 11:49:01 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   375
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   376
1369
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   377
removeAllSuchThat:aBlock
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   378
    "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
   379
     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
   380
     for which it returns true, are removed.
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   381
     Return a collection containing the removed elements."
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   382
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   383
    "/ 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
   384
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   385
    |runIndex removed element|
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   386
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   387
    removed := self species new.
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   388
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   389
    runIndex := 1.
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   390
    [runIndex <= self size] whileTrue:[
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   391
        element := self at:runIndex.
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   392
        (aBlock value:element) ifTrue:[
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   393
            removed add:element.
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   394
            self removeAtIndex:runIndex
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   395
        ] ifFalse:[
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   396
            runIndex := runIndex + 1
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   397
        ]
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   398
    ].
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   399
    ^ removed
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   400
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   401
    "
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   402
     |coll|
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   403
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   404
     coll := OrderedCollection withAll:(1 to:10).
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1421
diff changeset
   405
     Transcript showCR:(coll removeAllSuchThat:[:el | el even]).
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1421
diff changeset
   406
     Transcript showCR:coll
1369
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   407
    "
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   408
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   409
    "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
   410
!
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1366
diff changeset
   411
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   412
removeAtIndex:anIndex
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   413
    "remove the element stored at anIndex. Return the removed object.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   414
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   415
     Notice, that this is modifies the receiver NOT a copy.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   416
     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
   417
     due to the grow:-message, which is inefficient for fixed size 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   418
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   419
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   420
    |element|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   421
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   422
    element := self at:anIndex.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   423
    self removeFromIndex:anIndex toIndex:anIndex.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   424
    ^ element
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   425
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   426
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   427
     #(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
   428
     #(1 2 3 4 5) asOrderedCollection removeAtIndex:6
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   429
     #($a $b $c $d $e $f $g) removeAtIndex:3
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   430
    "
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   431
!
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   432
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   433
removeFirst
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   434
    "remove the first element of the receiver and return it.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   435
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   436
     Notice, that this is modifies the receiver NOT a copy.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   437
     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
   438
     due to the grow:-message, which is inefficient for fixed size 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   439
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   440
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   441
    ^ self removeAtIndex:1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   442
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   443
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   444
     |a|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   445
     a := #(1 2 3 4 5 6).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   446
     a removeFirst.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   447
     a 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   448
    "
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   449
!
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   450
2294
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   451
removeFromIndex:startIndex
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   452
    "remove the elements stored at indexes from startIndex to the end.
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   453
     Return the receiver.
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   454
     Returning the receiver is a historic leftover - it may at one
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   455
     time return a collection of the removed elements.
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   456
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   457
     Notice, that this is modifies the receiver - NOT a copy; 
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   458
     therefore any other users of the receiver will also see this change.
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   459
     Also note, that it may be a slow operation for some collections,
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   460
     due to the grow:-message, which is inefficient for fixed size 
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   461
     collections (i.e. for Strings and Arrays it is not recommened)."
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   462
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   463
    ^ self removeFromIndex:startIndex toIndex:(self size)
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   464
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   465
    "
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   466
     #(1 2 3 4 5 6 7 8 9 0) asOrderedCollection removeFromIndex:3 
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   467
     #(1 2 3 4 5 6 7 8 9 0) removeFromIndex:3
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   468
    "
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   469
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   470
    "Modified: 28.1.1997 / 12:35:20 / cg"
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   471
!
ed349da6fa4e added #removeFromIndex:
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
   472
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   473
removeFromIndex:startIndex toIndex:endIndex
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   474
    "remove the elements stored at indexes between startIndex and endIndex.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   475
     Return the receiver.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   476
     Returning the receiver is a historic leftover - it may at one
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   477
     time return a collection of the removed elements.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   478
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   479
     Notice, that this is modifies the receiver - NOT a copy; 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   480
     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
   481
     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
   482
     due to the grow:-message, which is inefficient for fixed size 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   483
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   484
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   485
    |size newSize|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   486
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   487
    (endIndex >= (size := self size)) ifTrue:[
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   488
	self grow:(startIndex - 1)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   489
    ] ifFalse:[
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   490
	newSize := size - endIndex + startIndex - 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   491
	self replaceFrom:startIndex to:newSize with:self startingAt:(endIndex + 1).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   492
	self grow:newSize
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   493
    ]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   494
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   495
"/    |newSize|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   496
"/
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   497
"/    newSize := self size - endIndex + startIndex - 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   498
"/    newSize <= 0 ifTrue:[
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   499
"/        self grow:0
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   500
"/    ] ifFalse:[
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   501
"/        self replaceFrom:startIndex to:newSize with:self startingAt:(endIndex + 1).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   502
"/        self grow:newSize
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   503
"/    ]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   504
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   505
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   506
     #(1 2 3 4 5 6 7 8 9 0) asOrderedCollection removeFromIndex:3 toIndex:5 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   507
     #(1 2 3 4 5 6 7 8 9 0) removeFromIndex:3 toIndex:5 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   508
     #(1 2 3 4 5 6 7 8 9 0) asOrderedCollection removeFromIndex:1 toIndex:10 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   509
     #(1 2 3 4 5 6 7 8 9 0) removeFromIndex:1 toIndex:10 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   510
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   511
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   512
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   513
removeIdentical:anElement ifAbsent:aBlock
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   514
    "search for an object which is identical to anElement;
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   515
     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
   516
     Uses identity compare (==) to search for an occurrence.
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   517
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   518
     Notice, that this is modifies the receiver NOT a copy.
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   519
     Also note, that it may be a slow operation for some collections,
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   520
     due to the grow:-message, which is inefficient for fixed size 
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   521
     collections (i.e. for Strings and Arrays it is not recommened)."
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   522
2363
57cc0807827a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2347
diff changeset
   523
    |any el
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   524
     dstIndex "{ Class: SmallInteger }"
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   525
     sz       "{ Class: SmallInteger }"|
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   526
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   527
    dstIndex := 1.
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   528
    any := false.
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   529
    sz := self size.
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   530
    1 to:sz do:[:srcIndex |
2363
57cc0807827a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2347
diff changeset
   531
        el := self at:srcIndex.
57cc0807827a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2347
diff changeset
   532
        (anElement == el) ifTrue:[
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   533
            any := true
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   534
        ] ifFalse:[
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   535
            (dstIndex ~~ srcIndex) ifTrue:[
2363
57cc0807827a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2347
diff changeset
   536
                self at:dstIndex put:el
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   537
            ].
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   538
            dstIndex := dstIndex + 1
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   539
        ]
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   540
    ].
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   541
    any ifTrue:[
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   542
        self grow:dstIndex - 1.
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   543
        ^ anElement
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   544
    ].
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   545
    ^ aBlock value
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   546
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   547
    "
2347
b79cdb6b553e added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2346
diff changeset
   548
     #(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
   549
     #(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
   550
    "
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   551
2363
57cc0807827a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2347
diff changeset
   552
    "Modified: 8.2.1997 / 16:26:49 / cg"
2346
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   553
!
7ebe79ad61a3 added #removeIdentical:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 2294
diff changeset
   554
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   555
removeIndex:index
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   556
    "remove the argument stored at index. Return the receiver.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   557
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   558
     Notice, that this is modifies the receiver NOT a copy.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   559
     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
   560
     due to the grow:-message, which is inefficient for fixed size 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   561
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   562
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   563
    self removeFromIndex:index toIndex:index
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   564
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   565
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   566
     #(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
   567
     #(1 2 3 4 5) asOrderedCollection removeIndex:6
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   568
     #($a $b $c $d $e $f $g) removeIndex:3
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   569
    "
77
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
   570
!
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
   571
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   572
removeLast
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   573
    "remove the last element of the receiver and return it.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   574
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   575
     Notice, that this is modifies the receiver NOT a copy.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   576
     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
   577
     due to the grow:-message, which is inefficient for fixed size
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   578
     collections (i.e. for Strings and Arrays it is not recommened)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   579
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   580
    ^ self removeAtIndex:(self size) 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   581
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   582
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   583
     |a|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   584
     a := #(1 2 3 4 5 6).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   585
     a removeLast.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   586
     a   
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   587
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   588
! !
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   589
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   590
!SequenceableCollection methodsFor:'comparing'!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   591
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   592
= aCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   593
    "return true if the receiver and aCollection represent collections
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   594
     with equal contents."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   595
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   596
    |index "{ Class: SmallInteger }"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   597
     stop  "{ Class: SmallInteger }" |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   598
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   599
    (aCollection == self) ifTrue:[^true].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   600
    (aCollection isSequenceable) ifFalse:[^false].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   601
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   602
    stop := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   603
    stop == (aCollection size) ifFalse:[^false].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   604
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   605
    index := 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   606
    [index <= stop] whileTrue:[
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   607
	(self at:index) = (aCollection at:index) ifFalse:[^false].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   608
	index := index + 1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   609
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   610
    ^ true
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   611
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   612
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   613
     #(1 2 3 4 5) = #(1 2 3 4 5)                        
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   614
     #($1 $2 $3 $4 $5) = #(1 2 3 4 5)                   
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   615
     #($1 $2 $3 $4 $5) = '12345'                       
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   616
     #($1 $2 $3 $4 $5) = '54321' asSortedCollection   
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   617
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   618
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   619
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   620
endsWith:aCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   621
    "return true, if the receivers last elements match those
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   622
     of aCollection"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   623
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   624
    |index1 "{ Class: SmallInteger }"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   625
     index2 "{ Class: SmallInteger }" 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   626
     stop   "{ Class: SmallInteger }" 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   627
     sz     "{ Class: SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   628
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   629
    (aCollection == self) ifTrue:[^ true].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   630
    (aCollection isSequenceable) ifFalse:[^ false].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   631
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   632
    stop := aCollection size.
77
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
   633
    sz := self size.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   634
    stop > sz ifTrue:[^false].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   635
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   636
    index1 := sz.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   637
    index2 := stop.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   638
    [index2 > 0] whileTrue:[
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   639
	(self at:index1) = (aCollection at:index2) ifFalse:[^ false].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   640
	index1 := index1 - 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   641
	index2 := index2 - 1
77
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
   642
    ].
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   643
    ^ true
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   644
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   645
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   646
     'abcde' endsWith:#($d $e)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   647
     #[1 2 3 4] endsWith:#(3 4)    
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   648
     #(1 2 3 4) asOrderedCollection endsWith:#(3 4)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   649
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   650
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   651
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   652
hash
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   653
    "return a hash key for the receiver"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   654
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   655
    "this hash is stupid - but for larger collections, the hashing
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   656
     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
   657
     Time will show ..."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   658
2411
6b3e74bf1703 Use #times: #instead of #* in hash to avoid long arithmethic.
Stefan Vogel <sv@exept.de>
parents: 2371
diff changeset
   659
    ^ ((self at:1 ifAbsent:0) hash times:self size) bitAnd:16r3FFFFFFF
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   660
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   661
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   662
     #(1 2 3 4 5) hash
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   663
     #(1 2 3 4 5.0) asOrderedCollection hash
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   664
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   665
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   666
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   667
startsWith:aCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   668
    "return true, if the receivers first elements match those
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   669
     of aCollection"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   670
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   671
    |index "{ Class: SmallInteger }"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   672
     stop  "{ Class: SmallInteger }" |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   673
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   674
    (aCollection == self) ifTrue:[^true].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   675
    (aCollection isSequenceable) ifFalse:[^false].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   676
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   677
    stop := aCollection size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   678
    stop > self size ifTrue:[^false].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   679
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   680
    index := 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   681
    [index <= stop] whileTrue:[
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   682
	(self at:index) = (aCollection at:index) ifFalse:[^false].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   683
	index := index + 1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   684
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   685
    ^ true
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   686
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   687
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   688
     'abcde' startsWith:#($a $b $c)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   689
     #[1 2 3 4] startsWith:#(1 2 3)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   690
     #(1 2 3 4) asOrderedCollection startsWith:#(1 2 3)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   691
    "
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   692
! !
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   693
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   694
!SequenceableCollection methodsFor:'converting'!
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   695
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   696
asStringCollection
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   697
    "return a new string collection containing the elements;
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   698
     these ought to be strings. (i.e. String or Text instances)"
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   699
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   700
    |newColl sz|
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   701
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   702
    sz := self size.
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   703
    newColl := (StringCollection new:sz) grow:sz.
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   704
    newColl replaceFrom:1 to:sz with:self startingAt:1.
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   705
    ^ newColl
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   706
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   707
    "Created: 18.5.1996 / 13:53:55 / cg"
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   708
    "Modified: 18.5.1996 / 14:00:16 / cg"
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   709
!
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   710
1188
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   711
asStringWith:sepChar
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   712
    "return a string generated by concatenating my elements 
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   713
     (which must be strings or nil) and embedding sepChar characters in between.
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   714
     Nil entries and empty strings are counted as empty lines."
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   715
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   716
    ^ self asStringWith:sepChar from:1 to:(self size)
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   717
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   718
    "
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   719
     #('hello' 'world' 'foo' 'bar' 'baz') asStringWith:$;
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   720
    "
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   721
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   722
    "Modified: 18.5.1996 / 15:28:14 / cg"
1188
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   723
!
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   724
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   725
asStringWith:sepCharacter from:firstLine to:lastLine
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   726
    "return part of myself as a string with embedded sepCharacters.
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   727
     My elements must be strings or nil; nil entries and empty strings are
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   728
     taken as empty lines."
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   729
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   730
    ^ self 
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   731
        asStringWith:sepCharacter 
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   732
        from:firstLine 
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   733
        to:lastLine
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   734
        compressTabs:false
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   735
        final:nil
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   736
    "
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   737
     creating entries for searchpath:
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   738
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   739
     #('foo' 'bar' 'baz' '/foo/bar') asStringWith:$;   
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   740
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   741
     #('foo' 'bar' 'baz' '/foo/bar') asStringWith:$: from:1 to:3   
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   742
    "
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   743
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   744
    "Modified: 23.2.1996 / 15:28:55 / cg"
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   745
!
a9efdd724afc more asString methods
ca
parents: 1159
diff changeset
   746
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   747
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
   748
    "return part of myself as a string or text with embedded sepCharacters.
263
e0195b4ad1ac *** empty log message ***
claus
parents: 260
diff changeset
   749
     My elements must be strings or nil; nil entries and empty strings are
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   750
     taken as empty lines.
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   751
     If the argument compressTabs is true, leading spaces are converted
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   752
     to tab-characters (8col tabs). The last line is followed by a final
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   753
     character (if non-nil).
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   754
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   755
     This method is tuned for big collections, in not creating many
263
e0195b4ad1ac *** empty log message ***
claus
parents: 260
diff changeset
   756
     intermediate strings (has linear runtime). For very small collections
e0195b4ad1ac *** empty log message ***
claus
parents: 260
diff changeset
   757
     and small strings, it may be faster to use the comma , operation."
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   758
293
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
   759
    |idx1        "{ Class:SmallInteger }"
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
   760
     idx2        "{ Class:SmallInteger }"
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
   761
     totalLength "{ Class:SmallInteger }"
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   762
     pos         "{ Class:SmallInteger }"
1003
c82f2dcf5611 care for embedded 16bit strings when concatenating a stringCollection
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
   763
     newString lineString spaces idx nTabs sepCnt
1536
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   764
     any16Bit stringClass needEmphasis newRuns c
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   765
     thisLen anyTab|
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   766
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   767
    "
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   768
     first accumulate the size of the string, to avoid
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   769
     countless reallocations. If tabs are compressed,
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   770
     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
   771
     On the fly, look if a 16bit string or emphasized text is needed.
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   772
    "
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   773
    any16Bit := needEmphasis := false.
1015
a564efc63383 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
   774
    stringClass := String.
a564efc63383 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
   775
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   776
    totalLength := 0.
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   777
    sepCnt := sepCharacter notNil ifTrue:[1] ifFalse:[0].
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   778
293
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
   779
    idx1 := firstLine.
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
   780
    idx2 := lastLine.
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
   781
    idx1 to:idx2 do:[:lineIndex |
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   782
        lineString := self at:lineIndex.
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   783
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   784
        lineString isNil ifTrue:[
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   785
            totalLength := totalLength + sepCnt
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   786
        ] ifFalse: [
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   787
            lineString hasChangeOfEmphasis ifTrue:[
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   788
                needEmphasis := true
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   789
            ].
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   790
            (lineString bitsPerCharacter == 16) ifTrue:[
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   791
                any16Bit := true.
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   792
                stringClass := lineString class
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   793
            ].
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   794
            totalLength := totalLength + lineString size + sepCnt
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   795
        ].
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   796
    ].
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   797
    endCharacter isNil ifTrue:[
1673
eea933dbf42d care for empty collection in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 1537
diff changeset
   798
        totalLength := totalLength - 1.
eea933dbf42d care for empty collection in #asStringWith:...
Claus Gittinger <cg@exept.de>
parents: 1537
diff changeset
   799
        totalLength < 0 ifTrue:[^ ''].
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   800
    ].
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   801
    spaces := '        '.
1016
9588a8d5a64e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1015
diff changeset
   802
    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
   803
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   804
    needEmphasis ifTrue:[
1536
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   805
        newRuns := RunArray new.
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   806
    ].
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   807
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   808
    "
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   809
     now, replace ...
1536
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   810
     Be careful with runArrays:
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   811
        replacing individual elements is VERY expensive.
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   812
        Therefore, create a new runArray from scratch.
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   813
    "
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   814
    pos := 1.
293
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
   815
    idx1 to:idx2 do:[:lineIndex |
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   816
        lineString := self at:lineIndex.
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   817
        thisLen := lineString size.
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   818
        thisLen ~~ 0 ifTrue:[
1536
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   819
            (anyTab := compressTabs) ifTrue:[
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   820
                "
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   821
                 mhmh: could use withTabs from String-class here,
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   822
                 but we should avoid creating too many temporary strings
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   823
                 (especially, since this method is typically used when converting
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   824
                 big texts such as when saving in the filebrowser ...).
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   825
                 Therefore, we convert tabs inline here doing a direct replace
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   826
                 in newString."
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   827
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   828
                idx := lineString findFirst:[:c | (c ~~ Character space)].
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   829
                nTabs := (idx-1) // 8.
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   830
                nTabs ~~ 0 ifTrue:[
1536
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   831
                    anyTab := true
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   832
                ]
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   833
            ].
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   834
            anyTab ifTrue:[
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   835
                "any tabs"
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   836
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   837
                idx := nTabs * 8 + 1.   "/ index of first copied character in string
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   838
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   839
                newString atAll:(pos to:pos+nTabs-1) put:(Character tab).
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   840
                newRuns notNil ifTrue:[
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   841
                    newRuns add:nil withOccurrences:nTabs
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   842
                ].
1536
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   843
                pos := pos + nTabs.
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   844
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   845
                newString replaceFrom:pos with:lineString startingAt:idx.
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   846
                newRuns notNil ifTrue:[
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   847
                    lineString hasChangeOfEmphasis ifTrue:[
2860
760052935b5a oops - asStringWith: was wrong
Claus Gittinger <cg@exept.de>
parents: 2610
diff changeset
   848
                        idx to:lineString size do:[:pos |
1536
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   849
                            newRuns add:(lineString emphasisAt:pos)
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   850
                        ]    
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   851
                    ] ifFalse:[
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   852
                        newRuns add:nil withOccurrences:(lineString size - idx + 1)
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   853
                    ]
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   854
                ].
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   855
                pos := pos + thisLen - (nTabs * 8).
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   856
            ] ifFalse:[
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   857
                newString replaceFrom:pos with:lineString.
1536
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   858
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   859
                newRuns notNil ifTrue:[
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   860
                    lineString hasChangeOfEmphasis ifTrue:[
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   861
                        newRuns addAll:(lineString emphasis)
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   862
                    ] ifFalse:[
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   863
                        newRuns add:nil withOccurrences:lineString size
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   864
                    ]
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   865
                ].
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   866
                pos := pos + thisLen.
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   867
            ].
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   868
        ].
1536
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   869
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   870
        lineIndex ~~ lastLine ifTrue:[
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   871
            c := sepCharacter
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   872
        ] ifFalse:[
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   873
            c := endCharacter
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   874
        ].
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   875
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   876
        c notNil ifTrue:[
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   877
            newString at:pos put:c.
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   878
            newRuns notNil ifTrue:[
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   879
                newRuns add:nil.
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   880
            ].
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   881
            pos := pos + 1
1536
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   882
        ].
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   883
    ].
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   884
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   885
    "
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   886
     in case of tab compression, the result has to be
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   887
     cut to size ... sorry
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   888
    "
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   889
    pos ~~ totalLength ifTrue:[
1536
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   890
        newString := newString copyTo:(pos - 1)
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   891
    ].
1536
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   892
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   893
    newRuns notNil ifTrue:[
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   894
        newString := Text string:newString runs:newRuns.
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   895
    ].
29d45204ceed tuned #asStringWith:... if any Text lines with emphasis are involved.
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
   896
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   897
    ^ newString
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   898
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   899
    "
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   900
     creating entries for searchpath:
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   901
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   902
       #('foo' 'bar' 'baz' '/foo/bar') 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   903
          asStringWith:$: 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   904
          from:1 to:4 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   905
          compressTabs:false 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   906
          final:nil 
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   907
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   908
     with trailing colon:
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   909
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   910
       #('foo' 'bar' 'baz' '/foo/bar') 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   911
          asStringWith:$: 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   912
          from:1 to:4 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   913
          compressTabs:false 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   914
          final:$: 
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   915
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   916
     concatenating all elements:
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   917
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   918
       #('foo' 'bar' 'baz') 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   919
          asStringWith:nil 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   920
          from:1 to:3 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   921
          compressTabs:false 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   922
          final:nil 
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   923
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   924
     creating a string from a collection of lines:
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   925
1395
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   926
       #('foo' 'bar' 'baz') 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   927
          asStringWith:(Character cr) 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   928
          from:1 to:3 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   929
          compressTabs:false 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   930
          final:(Character cr) 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   931
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   932
     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
   933
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   934
       (Array
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   935
            with:'foo'
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   936
            with:('bar' asText allBold)
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   937
            with:'baz'
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   938
            with:('baz2' asText emphasizeAllWith:#italic)
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   939
       ) 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   940
          asStringWith:(Character cr) 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   941
          from:1 to:4 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   942
          compressTabs:false 
f324be2221e3 asStringWith:... handles emphasized text
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
   943
          final:(Character cr) 
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   944
    "
1003
c82f2dcf5611 care for embedded 16bit strings when concatenating a stringCollection
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
   945
2860
760052935b5a oops - asStringWith: was wrong
Claus Gittinger <cg@exept.de>
parents: 2610
diff changeset
   946
    "Modified: 16.8.1997 / 04:44:46 / cg"
379
5b5a130ccd09 revision added
claus
parents: 375
diff changeset
   947
!
5b5a130ccd09 revision added
claus
parents: 375
diff changeset
   948
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   949
asStringWithCRs
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   950
    "return a string generated by concatenating my elements 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   951
     (which must be strings or nil) and embedding cr characters in between.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   952
     Nil entries and empty strings are counted as empty lines."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   953
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   954
    ^ self asStringWithCRsFrom:1 to:(self size)
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   955
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   956
    "
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   957
     #('hello' 'world' 'foo' 'bar' 'baz') asStringWithCRs 
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   958
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   959
     (OrderedCollection new
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   960
        add:'hello'; 
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   961
        add:'world';
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   962
        add:'foo';
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   963
        add:('bar' asText allBold);
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   964
        yourself) asStringWithCRs
1421
7224371d514c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   965
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1421
diff changeset
   966
     Transcript showCR:
1421
7224371d514c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   967
         (OrderedCollection new
7224371d514c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   968
            add:'hello'; 
7224371d514c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   969
            add:'world';
7224371d514c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   970
            add:'foo';
7224371d514c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   971
            add:('bar' asText allBold);
7224371d514c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   972
            yourself) asStringWithCRs
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   973
    "
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   974
1421
7224371d514c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   975
    "Modified: 18.5.1996 / 16:43:47 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   976
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   977
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   978
asStringWithCRsFrom:firstLine to:lastLine
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   979
    "return a string generated by concatenating some of my elements 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   980
     (which must be strings or nil) and embedding cr characters in between.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   981
     Nil entries and empty strings are counted as empty lines."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   982
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   983
    ^ self asStringWithCRsFrom:firstLine to:lastLine compressTabs:false withCR:true
1421
7224371d514c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   984
7224371d514c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   985
    "
7224371d514c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   986
     #('hello' 'world' 'foo' 'bar' 'baz') asStringWithCRsFrom:2 to:4 
7224371d514c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   987
7224371d514c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   988
    "
7224371d514c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   989
7224371d514c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   990
    "Modified: 18.5.1996 / 16:50:55 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   991
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   992
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   993
asStringWithCRsFrom:firstLine to:lastLine compressTabs:compressTabs
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   994
    "return part of myself as a string with embedded cr's.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   995
     My elements must be strings or nil.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   996
     If the argument compressTabs is true, leading spaces are converted
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   997
     to tab-characters (8col tabs).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   998
     Nil entries and empty strings are taken as empty lines."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   999
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1000
    ^ self asStringWithCRsFrom:firstLine to:lastLine compressTabs:compressTabs withCR:true
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1001
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1002
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1003
asStringWithCRsFrom:firstLine to:lastLine compressTabs:compressTabs withCR:withCR
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1004
    "return part of myself as a string with embedded cr's.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1005
     My elements must be strings or nil; nil entries and empty strings are
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1006
     taken as empty lines.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1007
     If the argument compressTabs is true, leading spaces are converted
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1008
     to tab-characters (8col tabs). WithCR controls whether the last line
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1009
     should be followed by a cr or not."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1010
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1011
    ^ self asStringWith:(Character cr)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1012
		   from:firstLine 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1013
		     to:lastLine 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1014
	   compressTabs:compressTabs 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1015
		  final:(withCR ifTrue:[Character cr] ifFalse:[nil])
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1016
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1017
379
5b5a130ccd09 revision added
claus
parents: 375
diff changeset
  1018
decodeAsLiteralArray
1245
c8afea3d5af0 commentary
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  1019
    "given a literalEncoding in the receiver,
c8afea3d5af0 commentary
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  1020
     create & return the corresponding object.
c8afea3d5af0 commentary
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  1021
     The inverse operation to #literalArrayEncoding."
c8afea3d5af0 commentary
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  1022
2165
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  1023
    |clsName cls|
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  1024
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  1025
    clsName := self first.
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  1026
    cls := Smalltalk at:clsName ifAbsent:nil.
379
5b5a130ccd09 revision added
claus
parents: 375
diff changeset
  1027
    cls isNil ifTrue:[
2165
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  1028
        ^ self error:'unknown class in spec: ' , clsName.
379
5b5a130ccd09 revision added
claus
parents: 375
diff changeset
  1029
    ].
2371
280aa91ff41e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2363
diff changeset
  1030
    ^ cls decodeFromLiteralArray:self.
379
5b5a130ccd09 revision added
claus
parents: 375
diff changeset
  1031
5b5a130ccd09 revision added
claus
parents: 375
diff changeset
  1032
    "
5b5a130ccd09 revision added
claus
parents: 375
diff changeset
  1033
     #(Point 10 20) decodeAsLiteralArray  
5b5a130ccd09 revision added
claus
parents: 375
diff changeset
  1034
     #(Rectangle 100 200 400 500) decodeAsLiteralArray 
2417
64115b76cd15 commentary
Claus Gittinger <cg@exept.de>
parents: 2413
diff changeset
  1035
     #(#MenuItem #rawLabel: 'right' #value: #right) decodeAsLiteralArray 
379
5b5a130ccd09 revision added
claus
parents: 375
diff changeset
  1036
    "
1245
c8afea3d5af0 commentary
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  1037
2417
64115b76cd15 commentary
Claus Gittinger <cg@exept.de>
parents: 2413
diff changeset
  1038
    "Modified: 25.2.1997 / 19:52:40 / cg"
422
claus
parents: 384
diff changeset
  1039
!
claus
parents: 384
diff changeset
  1040
claus
parents: 384
diff changeset
  1041
literalArrayEncoding
1245
c8afea3d5af0 commentary
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  1042
    "encode myself as an array literal, from which a copy of the receiver
c8afea3d5af0 commentary
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  1043
     can be reconstructed with #decodeAsLiteralArray."
c8afea3d5af0 commentary
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  1044
422
claus
parents: 384
diff changeset
  1045
    ^ (self collect:[:el | el literalArrayEncoding]) asArray
claus
parents: 384
diff changeset
  1046
claus
parents: 384
diff changeset
  1047
    "
claus
parents: 384
diff changeset
  1048
     (Array with:(Color red:50 green:50 blue:50)
1245
c8afea3d5af0 commentary
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  1049
            with:(1 @ 2)
422
claus
parents: 384
diff changeset
  1050
     ) literalArrayEncoding   
claus
parents: 384
diff changeset
  1051
    "
1245
c8afea3d5af0 commentary
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  1052
c8afea3d5af0 commentary
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  1053
    "Modified: 22.4.1996 / 13:00:56 / cg"
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  1054
! !
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
  1055
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1056
!SequenceableCollection methodsFor:'copying'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1057
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1058
, aCollection
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1059
    "return a new collection formed from concatenating the receiver with
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1060
     the argument. The class of the new collection is determined by the
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1061
     receivers class, so mixing classes is possible, if the second collections
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1062
     elements can be stored into instances of the receivers class."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1063
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1064
    |newCollection 
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1065
     mySize    "{ Class: SmallInteger }"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1066
     newSize   "{ Class: SmallInteger }"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1067
     otherSize "{ Class: SmallInteger }"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1068
     dstIndex  "{ Class: SmallInteger }"|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1069
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1070
    mySize := self size.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1071
    otherSize := aCollection size.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1072
    newSize := mySize + otherSize.
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1073
252
  1074
    newCollection := self copyEmptyAndGrow:newSize.   "must grow, otherwise replace fails"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1075
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1076
    newCollection replaceFrom:1 to:mySize with:self startingAt:1.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1077
    dstIndex := mySize + 1.
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1078
    aCollection isSequenceable ifTrue:[
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1079
	"
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1080
	 yes, aCollection has indexed elements
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1081
	"
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1082
	newCollection replaceFrom:dstIndex to:newSize
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1083
			     with:aCollection startingAt:1.
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1084
	^ newCollection
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1085
    ] ifFalse:[
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1086
	"
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1087
	 no, enumerate aCollection
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1088
	"
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1089
	aCollection do:[:element |
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1090
	    newCollection at:dstIndex put:element.
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1091
	    dstIndex := dstIndex + 1
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1092
	]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1093
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1094
    ^ newCollection
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1095
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1096
    "
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1097
     #($a $b $c) , #(1 2 3)
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1098
     #($a $b $c) , '123'
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1099
     'abc' , '123'
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1100
     'abc' , #($q $w $e $r $t $y) asSortedCollection
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1101
     'abc' , #(1 2 3 4 5)"  "-- will fail, since strings cannot store integers
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1102
     'abc' asArray , #(1 2 3 4 5)
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1103
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1104
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1105
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1106
copyFirst:count
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1107
    "return a new collection consisting of the receivers first count
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1108
     elements - this is just a rename of copyTo: - for compatibility."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1109
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1110
    ^ self copyFrom:1 to:count
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
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1113
     #($a $b $c $d $e $f $g) copyFirst:5
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1114
     '1234567890' copyFirst:4
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1115
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1116
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1117
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1118
copyFrom:start
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1119
    "return a new collection consisting of receivers elements
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1120
     from start to the end of the collection"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1121
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1122
    ^ self copyFrom:start to:(self size)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1123
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
     #($a $b $c $d $e $f $g) copyFrom:2
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1126
     '1234567890' copyFrom:2
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1127
    "
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
2413
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1130
copyFrom:start count:numberOfElements
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1131
    "return a new collection consisting of numberOfElements elements
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1132
     extracted from the receiver starting at index start
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1133
     (i.e. extract a slice)"
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1134
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1135
    ^ self
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1136
        copyFrom:start
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1137
        to:(start + numberOfElements - 1)
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1138
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1139
    "
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1140
     #($a $b $c $d $e $f $g) copyFrom:2 count:3 
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1141
     '1234567890' copyFrom:2 count:5    
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1142
    "
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1143
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1144
    "Modified: 20.2.1997 / 14:23:01 / cg"
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1145
!
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1146
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1147
copyFrom:start to:stop
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1148
    "return a new collection consisting of receivers elements
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1149
     between start and stop"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1150
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1151
    |newCollection newSize|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1152
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1153
    newSize := stop - start + 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1154
    newCollection := self copyEmptyAndGrow:newSize.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1155
    newCollection replaceFrom:1 to:newSize with:self startingAt:start.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1156
    ^ newCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1157
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1158
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1159
     #($a $b $c $d $e $f $g) copyFrom:2 to:5
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1160
     '1234567890' copyFrom:2 to:5
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1161
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1162
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1163
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1164
copyLast:count
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1165
    "return a new collection consisting of the receivers last count
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1166
     elements."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1167
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1168
    |sz|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1169
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1170
    sz := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1171
    ^ self copyFrom:(sz - count + 1) to:sz
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1172
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1173
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1174
     #($a $b $c $d $e $f $g) copyLast:5
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1175
     '1234567890' copyLast:4
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1176
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1177
!
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
copyReplaceFrom:startIndex to:endIndex with:aCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1180
    "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
  1181
     endIndex have been replaced by the elements of aCollection"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1182
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1183
    |newColl sz replSize|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1184
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1185
    replSize := aCollection size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1186
    sz := self size - (endIndex - startIndex + 1) + replSize.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1187
    newColl := self copyEmptyAndGrow:sz.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1188
    newColl replaceFrom:1 to:(startIndex - 1) with:self.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1189
    newColl replaceFrom:startIndex with:aCollection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1190
    newColl replaceFrom:(startIndex + replSize) with:self startingAt:(endIndex + 1).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1191
    ^ newColl
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1192
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1193
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1194
     #(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)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1195
     'hello world' copyReplaceFrom:6 to:6 with:' there, '  
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1196
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1197
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1198
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1199
copyReplaceFrom:startIndex with:aCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1200
    "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
  1201
     the end have been replaced by the elements of aCollection"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1202
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1203
    ^ self copyReplaceFrom:startIndex to:(self size) with:aCollection
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
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1206
     #(1 2 3 4 5 6 7 8 9 0) copyReplaceFrom:3 with:#(a b c)  
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1207
     'hello world' copyReplaceFrom:7 with:'smalltalk fan'  
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1208
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1209
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1210
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1211
copyThrough:element
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1212
    "return a new collection consisting of the receiver elements
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1213
     up-to (AND including) the first occurence of element."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1214
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1215
    |idx|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1216
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1217
    idx := self indexOf:element.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1218
    idx == 0 ifTrue:[^ nil].    "question: is this ok?"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1219
    ^ self copyFrom:1 to:idx
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1220
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1221
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1222
     #($a $b $c $d $e $f $g) copyThrough:$d
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1223
     '1234567890' copyThrough:$5
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1224
     '1234567890' copyThrough:$a
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1225
     '1234567890' copyThrough:$1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1226
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1227
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1228
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1229
copyTo:stop
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1230
    "return a new collection consisting of receivers elements
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1231
     from 1 up to (including) index stop"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1232
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1233
    ^ self copyFrom:1 to:stop
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1234
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1235
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1236
     #($a $b $c $d $e $f $g) copyTo:5
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1237
     '1234567890' copyTo:4
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1238
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1239
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1240
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1241
copyUpTo:element
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1242
    "return a new collection consisting of the receiver elements
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1243
     up-to (but excluding) the first occurence of element;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1244
     or to the end, if element is not included"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1245
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1246
    |idx|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1247
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1248
    idx := self indexOf:element.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1249
    idx == 0 ifTrue:[^ self copy].    "question: is this ok?"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1250
    idx == 1 ifTrue:[^ self copyEmpty].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1251
    ^ self copyFrom:1 to:(idx-1)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1252
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1253
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1254
     #($a $b $c $d $e $f $g) copyUpTo:$d
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1255
     '1234567890' copyUpTo:$5
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1256
     '1234567890' copyUpTo:$a
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1257
     '1234567890' copyUpTo:$1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1258
     '123456789' copyUpTo:$0
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1259
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1260
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1261
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1262
copyWith:newElement
233
98f588af201a comments
claus
parents: 202
diff changeset
  1263
    "return a new collection containing the receivers elements
98f588af201a comments
claus
parents: 202
diff changeset
  1264
     and the single new element, newElement. 
98f588af201a comments
claus
parents: 202
diff changeset
  1265
     This is different from concatentation, which expects another collection
98f588af201a comments
claus
parents: 202
diff changeset
  1266
     as argument, but equivalent to copy-and-addLast."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1267
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1268
    |newCollection mySize newSize|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1269
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1270
    mySize := self size.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1271
    newSize := mySize + 1.
252
  1272
    newCollection := self copyEmptyAndGrow:newSize.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1273
    newCollection replaceFrom:1 to:mySize with:self startingAt:1.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1274
    newCollection at:newSize put:newElement.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1275
    ^newCollection
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1276
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1277
    "
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1278
     #(1 2 3 4 5) copyWith:$a
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1279
     'abcdefg' copyWith:$h
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1280
     'abcdefg' copyWith:'123'   -- will fail: string cannot be stored into string
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1281
     'abcdefg' copyWith:1       -- will fail: integer cannot be stored into string
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1282
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1283
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1284
61
claus
parents: 44
diff changeset
  1285
copyWithout:elementToSkip
claus
parents: 44
diff changeset
  1286
    "return a new collection consisting of a copy of the receiver, with
claus
parents: 44
diff changeset
  1287
     ALL elements equal to elementToSkip are left out.
claus
parents: 44
diff changeset
  1288
     No error is reported, if elementToSkip is not in the collection."
claus
parents: 44
diff changeset
  1289
293
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1290
    |n         "{ Class: SmallInteger }"
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1291
     sz        "{ Class: SmallInteger }"
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1292
     srcIndex  "{ Class: SmallInteger }"
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1293
     dstIndex  "{ Class: SmallInteger }"
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1294
     skipIndex "{ Class: SmallInteger }"
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1295
     copy l|
61
claus
parents: 44
diff changeset
  1296
claus
parents: 44
diff changeset
  1297
    "the code below may look like overkill, 
claus
parents: 44
diff changeset
  1298
     however, for big collections its better to move data
claus
parents: 44
diff changeset
  1299
     around in big chunks"
claus
parents: 44
diff changeset
  1300
claus
parents: 44
diff changeset
  1301
    n := self occurrencesOf:elementToSkip.
claus
parents: 44
diff changeset
  1302
    n == 0 ifTrue:[^ self copy].
claus
parents: 44
diff changeset
  1303
claus
parents: 44
diff changeset
  1304
    sz := self size.
252
  1305
    copy := self copyEmptyAndGrow:(sz - n).
61
claus
parents: 44
diff changeset
  1306
claus
parents: 44
diff changeset
  1307
    srcIndex := 1.
claus
parents: 44
diff changeset
  1308
    dstIndex := 1.
claus
parents: 44
diff changeset
  1309
claus
parents: 44
diff changeset
  1310
    n timesRepeat:[
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1311
	skipIndex := self indexOf:elementToSkip startingAt:srcIndex.
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1312
	l := skipIndex - srcIndex.
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1313
	l ~~ 0 ifTrue:[
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1314
	    copy replaceFrom:dstIndex to:(dstIndex + l - 1) 
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1315
			with:self startingAt:srcIndex.
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1316
	    dstIndex := dstIndex + l
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1317
	].
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1318
	srcIndex := skipIndex + 1
61
claus
parents: 44
diff changeset
  1319
    ].
claus
parents: 44
diff changeset
  1320
    l := sz - srcIndex.
claus
parents: 44
diff changeset
  1321
    copy replaceFrom:dstIndex to:(dstIndex + l)
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1322
		with:self startingAt:srcIndex.
61
claus
parents: 44
diff changeset
  1323
    ^ copy
claus
parents: 44
diff changeset
  1324
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1325
    "
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1326
     #($a $b $c $d $e $f $g) copyWithout:$d
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1327
     #($a $b $c $d $e $f $g) copyWithout:$a
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1328
     #($a $b $c $d $e $f $g) copyWithout:$g
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1329
     'abcdefghi' copyWithout:$h    
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1330
     'abcdefg' copyWithout:$h       
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1331
     #($a $b $c $a $a $d $e $a $f $g) copyWithout:$a
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1332
     #($a $b $c $d $e $f $g) copyWithout:$x
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1333
     #(90 80 70 60 50) copyWithout:70
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1334
     #(90 80 70 80 60 45 80 50) copyWithout:80
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1335
    "
61
claus
parents: 44
diff changeset
  1336
!
claus
parents: 44
diff changeset
  1337
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1338
copyWithoutFirst:elementToSkip
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1339
    "return a new collection consisting of a copy of the receivers elements
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1340
     without the first elementToSkip, if it was present. 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1341
     No error is reported, if elementToSkip is not in the collection."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1342
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1343
    |copy skipIndex sz|
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
    skipIndex := self indexOf:elementToSkip startingAt:1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1346
    (skipIndex == 0) ifTrue:[^ self copy].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1347
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1348
    sz := self size - 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1349
    copy := self copyEmptyAndGrow:sz.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1350
    copy replaceFrom:1 to:(skipIndex - 1) with:self startingAt:1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1351
    copy replaceFrom:skipIndex to:sz with:self startingAt:(skipIndex + 1).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1352
    ^ copy
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1353
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1354
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1355
     #($a $b $c $d $e $f $g) copyWithoutFirst:$d
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1356
     #($a $b $c $d $e $f $g) copyWithoutFirst:$x
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1357
     #(90 80 70 60 50) copyWithoutFirst:70
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1358
     #(90 80 70 80 60 45 80 50) copyWithoutFirst:80
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1359
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1360
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1361
61
claus
parents: 44
diff changeset
  1362
copyWithoutIndex:omitIndex
claus
parents: 44
diff changeset
  1363
    "return a new collection consisting of receivers elements
claus
parents: 44
diff changeset
  1364
     without the argument stored at omitIndex"
claus
parents: 44
diff changeset
  1365
claus
parents: 44
diff changeset
  1366
    |copy sz|
claus
parents: 44
diff changeset
  1367
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1368
    sz := self size - 1.
252
  1369
    copy := self copyEmptyAndGrow:sz.
293
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1370
    copy replaceFrom:1 to:(omitIndex - 1) with:self startingAt:1.
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1371
    copy replaceFrom:omitIndex to:sz with:self startingAt:(omitIndex + 1).
61
claus
parents: 44
diff changeset
  1372
    ^ copy
claus
parents: 44
diff changeset
  1373
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1374
    "
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1375
     #(1 2 3 4 5 6 7 8 9 0) copyWithoutIndex:3
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1376
     'abcdefghijkl' copyWithoutIndex:5
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1377
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1378
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1379
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1380
copyWithoutLast:count
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1381
    "return a new collection consisting of the receivers elements
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1382
     except the last count elements."
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1383
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1384
    |sz|
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1385
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1386
    sz := self size.
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1387
    ^ self copyTo:(sz - count)
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1388
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1389
    "
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1390
     #($a $b $c $d $e $f $g) copyWithoutLast:5 
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1391
     '1234567890' copyWithoutLast:4 
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1392
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1393
! !
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1394
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1395
!SequenceableCollection methodsFor:'enumerating'!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1396
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1397
collect:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1398
    "evaluate the argument, aBlock for every element in the collection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1399
     and return a collection of the results"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1400
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1401
    |newCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1402
     sz  "{ Class:SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1403
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1404
    sz := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1405
    newCollection := self copyEmptyAndGrow:sz.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1406
    1 to:sz do:[:index |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1407
	newCollection at:index put:(aBlock value:(self at:index)).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1408
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1409
    ^ newCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1410
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1411
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1412
     #(one two three four five six) collect:[:element | element asUppercase]  
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1413
     #(1 2 3 4 5 6 7 8 9) collect:[:element | element factorial]   
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1414
     (1 to:9) collect:[:element | element * element]   
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1415
    "
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1416
!
40ca7cc6fb9c *** empty log message ***
claus
parents: 186
diff changeset
  1417
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1418
do:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1419
    "evaluate the argument, aBlock for every element in the collection."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1420
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1421
    |stop "{ Class:SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1422
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1423
    stop := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1424
    1 to:stop do:[:index |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1425
	aBlock value:(self at:index).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1426
    ]
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1427
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1428
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1421
diff changeset
  1429
     #(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
  1430
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1431
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1432
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1433
do:aBlock separatedBy:sepBlock
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1434
    "evaluate the argument, aBlock for every element in the collection.
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1435
     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
  1436
     last element), evaluate sepBlock.
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1437
     This supports printing of collections with elements separated by some
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1438
     string."
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1439
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1440
    |stop "{ Class:SmallInteger }"|
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1441
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1442
    stop := self size.
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1443
    stop < 1 ifTrue:[^ self].
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1444
    aBlock value:(self at:1).
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1445
    2 to:stop do:[:index |
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1446
	sepBlock value.
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1447
	aBlock value:(self at:index)
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1448
    ].
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1449
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1450
    "
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1451
     #(one two three four five six)
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1452
	do:[:each | Transcript show:each]
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1453
	separatedBy:[Transcript show:' , ']
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1454
    "
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1455
!
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1456
    
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1457
from:startIndex do:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1458
    "evaluate the argument, aBlock for the elements starting with the
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1459
     element at startIndex to the end."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1460
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1461
    ^ self from:startIndex to:self size do:aBlock
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1462
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1463
    "
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1464
     #(one two three four five six) 
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1465
	from:3 
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1466
	do:[:element | Transcript showCR:element]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1467
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1468
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1469
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1470
from:start to:stop collect:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1471
    "evaluate the argument, aBlock for the elements indexed by start
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1472
     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
  1473
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1474
    |newCollection sz
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1475
     idx  "{ Class:SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1476
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1477
    sz := stop - start + 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1478
    newCollection := self copyEmptyAndGrow:sz.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1479
    idx := 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1480
    start to:stop do:[:index |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1481
	newCollection at:idx put:(aBlock value:(self at:index)).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1482
	idx := idx + 1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1483
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1484
    ^ newCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1485
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1486
    "
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1487
     #(one two three four five six) 
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1488
	from:2 
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1489
	to:4 
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1490
	collect:[:element | element asUppercase]  
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1491
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1492
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1493
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1494
from:index1 to:index2 do:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1495
    "evaluate the argument, aBlock for the elements with index index1 to
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1496
     index2 in the collection"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1497
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1498
    |start "{ Class:SmallInteger }"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1499
     stop  "{ Class:SmallInteger }" |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1500
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1501
    start := index1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1502
    stop := index2.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1503
    start to:stop do:[:index |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1504
	aBlock value:(self at:index).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1505
    ]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1506
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1507
    "
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1508
     #(one two three four five six) 
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1509
	from:3 
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1510
	to:5 
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1511
	do:[:element | Transcript showCR:element]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1512
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1513
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1514
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1515
from:index1 to:index2 reverseDo:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1516
    "evaluate the argument, aBlock for the elements with index index1 to
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1517
     index2 in the collection. Step in reverse order"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1518
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1519
    |start "{ Class:SmallInteger }"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1520
     stop  "{ Class:SmallInteger }" |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1521
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1522
    start := index1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1523
    stop := index2.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1524
    stop to:start by:-1 do:[:index |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1525
	aBlock value:(self at:index).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1526
    ]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1527
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1528
    "
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1529
     #(one two three four five six) 
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1530
	from:3 
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1531
	to:5 
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1532
	reverseDo:[:element | Transcript showCR:element]
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1533
    "
61
claus
parents: 44
diff changeset
  1534
!
claus
parents: 44
diff changeset
  1535
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1536
keysAndValuesDo:aTwoArgBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1537
    "evaluate the argument, aBlock for every element in the collection,
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1538
     passing both index and element as arguments."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1539
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1540
    |stop  "{ Class:SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1541
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1542
    stop := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1543
    1 to:stop do:[:index |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1544
	aTwoArgBlock value:index value:(self at:index).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1545
    ]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1546
    "
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1547
     #(one two three four five six) 
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1548
	keysAndValuesDo:[:key :element | 
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1549
			    Transcript show:key; space; showCR:element
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1550
			]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1551
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1552
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1553
1359
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1554
keysAndValuesReverseDo:aTwoArgBlock
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1555
    "evaluate the argument, aBlock in reverse order, for every element 
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1556
     in the collection, passing both index and element as arguments."
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1557
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1558
    |stop  "{ Class:SmallInteger }"|
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1559
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1560
    stop := self size.
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1561
    stop to:1 by:-1 do:[:index |
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1562
        aTwoArgBlock value:index value:(self at:index).
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1563
    ]
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1564
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1565
    "
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1566
     #(one two three four five six) 
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1567
        keysAndValuesReverseDo:[:key :element | 
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1568
				    Transcript show:key; space; showCR:element
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1569
			       ]
1359
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1570
    "
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1571
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1572
    "Modified: 9.5.1996 / 00:57:23 / cg"
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1573
!
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
  1574
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1575
nonNilElementsDo:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1576
    "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
  1577
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1578
    |stop "{ Class:SmallInteger }"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1579
     element|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1580
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1581
    stop := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1582
    1 to:stop do:[:index |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1583
	(element := self at:index) notNil ifTrue:[
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1584
	    aBlock value:element.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1585
	]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1586
    ]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1587
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1421
diff changeset
  1588
     #(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
  1589
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1590
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1591
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1592
pairWiseCollect:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1593
    "evaluate the argument, aBlock for every pair of elements in the collection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1594
     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
  1595
     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
  1596
     is not a multiple of 2.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1597
     Collect the results and return a new collection containing those."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1598
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1599
    |stop newCollection dstIdx "{ Class:SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1600
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1601
    stop := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1602
    newCollection := self copyEmptyAndGrow:stop // 2.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1603
    dstIdx := 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1604
    1 to:stop by:2 do:[:index |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1605
	newCollection at:dstIdx put:(aBlock value:(self at:index) value:(self at:index+1)).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1606
	dstIdx := dstIdx + 1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1607
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1608
    ^ newCollection
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1609
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1610
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1611
     #(1 one 2 two 3 three 4 four 5 five 6 six) 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1612
     pairWiseCollect:[:num :sym | sym->num] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1613
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1614
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1615
     #(1 1  1 2  1 3  1 4  1 5) 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1616
     pairWiseCollect:[:x :y | x@y] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1617
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1618
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1619
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1620
pairWiseDo:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1621
    "evaluate the argument, aBlock for every pair of elements in the collection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1622
     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
  1623
     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
  1624
     is not a multiple of 2."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1625
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1626
    |stop "{ Class:SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1627
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1628
    stop := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1629
    1 to:stop by:2 do:[:index |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1630
	aBlock value:(self at:index) value:(self at:index+1).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1631
    ]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1632
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1633
     #(1 one 2 two 3 three 4 four 5 five 6 six) 
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1421
diff changeset
  1634
     pairWiseDo:[:num :sym | Transcript show:num; show:' is: '; showCR:sym]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1635
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1636
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1637
     #(1 1  1 2  1 3  1 4  1 5) 
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1421
diff changeset
  1638
     pairWiseDo:[:x :y | Transcript showCR:x@y]
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1639
    "
61
claus
parents: 44
diff changeset
  1640
!
claus
parents: 44
diff changeset
  1641
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1642
reverseDo:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1643
    "evaluate the argument, aBlock for every element in the collection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1644
     in reverse order"
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
    |sz  "{ Class:SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1647
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1648
    sz := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1649
    sz to:1 by:-1 do:[:index |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1650
	aBlock value:(self at:index).
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
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1421
diff changeset
  1654
     #(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
  1655
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1656
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1657
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1658
select:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1659
    "evaluate the argument, aBlock for every element in the collection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1660
     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
  1661
     true"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1662
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1663
    |element newColl species needCopy
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1664
     sz  "{ Class:SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1665
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1666
    sz := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1667
    species := self species.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1668
    species growIsCheap ifFalse:[
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1669
	newColl := OrderedCollection new:sz.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1670
	needCopy := true
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1671
    ] ifTrue:[
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1672
	newColl := self copyEmpty:sz.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1673
	needCopy := false
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1674
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1675
    1 to:sz do:[:index |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1676
	element := self at:index.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1677
	(aBlock value:element) ifTrue:[
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1678
	    newColl add:element
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1679
	].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1680
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1681
    needCopy ifTrue:[
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1682
	newColl := (species withAll:newColl) postCopyFrom:self
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1683
    ].
61
claus
parents: 44
diff changeset
  1684
    ^ newColl
claus
parents: 44
diff changeset
  1685
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1686
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1687
     #(one two three four five six) select:[:element | element startsWith:'f']   
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1688
     #(1 2 3 4 5 6 7 8 9) select:[:element | element odd]   
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1689
     (#(17 12 1 98 51) asSortedCollection:[:a :b | b < a]) select:[:element | element odd]   
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1690
     (1 to:9) select:[:element | element odd]   
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1691
     (Smalltalk allClasses) select:[:class | class name startsWith:'S']   
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1692
    "
186
a4c3032fc825 *** empty log message ***
claus
parents: 159
diff changeset
  1693
!
a4c3032fc825 *** empty log message ***
claus
parents: 159
diff changeset
  1694
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1695
with:aSequenceableCollection do:aTwoArgBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1696
    "evaluate the argument, aBlock for successive elements from
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1697
     each the receiver and the argument, aSequenceableCollection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1698
     The second argument, aBlock must be a two-argument block.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1699
     The collection argument must implement access via a numeric key."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1700
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1701
    |stop  "{ Class: SmallInteger }" |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1702
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1703
    stop := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1704
    1 to:stop do:[:index |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1705
	aTwoArgBlock value:(self at:index) value:(aSequenceableCollection at:index).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1706
    ]
186
a4c3032fc825 *** empty log message ***
claus
parents: 159
diff changeset
  1707
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1421
diff changeset
  1708
     #(one two three four five six) with:(1 to:10) do:[:el1 :el2 | Transcript show:el1; space; showCR:el2]
186
a4c3032fc825 *** empty log message ***
claus
parents: 159
diff changeset
  1709
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1710
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1711
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1712
!SequenceableCollection methodsFor:'filling and replacing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1713
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1714
atAllPut:anObject
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1715
    "replace all elements of the collection by the argument, anObject.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1716
     Notice: This operation modifies the receiver, NOT a copy;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1717
     therefore the change may affect all others referencing the receiver."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1718
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1719
    self from:1 to:(self size) put:anObject
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1720
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1721
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1722
     (Array new:10) atAllPut:1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1723
     (String new:10) atAllPut:$a
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1724
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1725
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1726
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1727
from:index1 to:index2 put:anObject
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1728
    "replace the elements from index1 to index2 of the collection
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1729
     by the argument, anObject.
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1730
     Notice: This operation modifies the receiver, NOT a copy;
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1731
     therefore the change may affect all others referencing the receiver."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1732
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1733
    |index "{ Class: SmallInteger }"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1734
     end   "{ Class: SmallInteger }"|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1735
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1736
    index := index1.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1737
    end := index2.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1738
    [index <= end] whileTrue:[
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1739
	self at:index put:anObject.
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1740
	index := index + 1
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1741
    ]
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1742
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1743
    "
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1744
     #(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
  1745
     'abcdefghijkl' from:3 to:6 put:$X
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1746
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1747
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1748
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1749
replaceAll:oldObject with:newObject
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1750
    "replace all oldObjects by newObject in the receiver.
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1751
     Notice: This operation modifies the receiver, NOT a copy;
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1752
     therefore the change may affect all others referencing the receiver."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1753
2980
a662ffcfad1d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2927
diff changeset
  1754
    ^ self replaceAll:oldObject with:newObject from:1 to:self size
362
claus
parents: 360
diff changeset
  1755
claus
parents: 360
diff changeset
  1756
    "
2980
a662ffcfad1d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2927
diff changeset
  1757
     '123123abc123' replaceAll:$1 with:$*  
a662ffcfad1d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2927
diff changeset
  1758
     #(1 2 3 4 1 2 3 4) copy replaceAll:1 with:'one' 
362
claus
parents: 360
diff changeset
  1759
    "
claus
parents: 360
diff changeset
  1760
!
293
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1761
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1762
replaceAll:oldObject with:newObject from:startIndex to:stopIndex
362
claus
parents: 360
diff changeset
  1763
    "replace all oldObjects found between startIndex and endIndex,
claus
parents: 360
diff changeset
  1764
     by newObject in the receiver.
claus
parents: 360
diff changeset
  1765
     Notice: This operation modifies the receiver, NOT a copy;
claus
parents: 360
diff changeset
  1766
     therefore the change may affect all others referencing the receiver."
claus
parents: 360
diff changeset
  1767
claus
parents: 360
diff changeset
  1768
    |start "{ Class: SmallInteger }"
claus
parents: 360
diff changeset
  1769
     stop  "{ Class: SmallInteger }"|
claus
parents: 360
diff changeset
  1770
claus
parents: 360
diff changeset
  1771
    start := startIndex.
claus
parents: 360
diff changeset
  1772
    stop := stopIndex.
claus
parents: 360
diff changeset
  1773
    startIndex to:stopIndex do:[:index |
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1774
	(self at:index) = oldObject ifTrue:[
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1775
	    self at:index put:newObject
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1776
	]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1777
    ]
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1778
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1779
    "
2980
a662ffcfad1d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2927
diff changeset
  1780
     '123123abc123' replaceAll:$1 with:$*
a662ffcfad1d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2927
diff changeset
  1781
     '123123abc123' replaceAll:$1 with:$* from:1 to:6
a662ffcfad1d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2927
diff changeset
  1782
     #(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
  1783
    "
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1784
!
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1785
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1786
replaceAll:oldObject by:newObject
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1787
    "backward ST/X compatibility: an alias for #replaceAll:with:.
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1788
     Pleace do no longer use this one;
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1789
     instead use #replaceAll:with: for ST-80 compatibility."
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1790
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1791
    self obsoleteMethodWarning:'use #replaceAll:with:'.
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1792
    ^ self replaceAll:oldObject with:newObject
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1793
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1794
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1795
replaceAll:oldObject by:newObject from:startIndex to:stopIndex
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1796
    "backward ST/X compatibility: an alias for #replaceAll:with:from:to:.
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1797
     Pleace do no longer use this one;
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1798
     instead use #replaceAll:with:from:to: for ST-80 compatibility."
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1799
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1800
    ^ self replaceAll:oldObject with:newObject from:startIndex to:stopIndex
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1801
!
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1802
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1803
replaceAny:aCollection with:newObject
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1804
    "replace all elements, which are in aCollection, by newObject.
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1805
     Notice: This operation modifies the receiver, NOT a copy;
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1806
     therefore the change may affect all others referencing the receiver."
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1807
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1808
    ^ self replaceAny:aCollection with:newObject from:1 to:self size
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1809
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1810
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1811
replaceAny:aCollection by:newObject
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1812
    "backward ST/X compatibility; alias for #replaceAny:with:.
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1813
     Pleace do no longer use this one;
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1814
     instead use #replaceAny:with: for naming consistence."
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1815
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1816
    self obsoleteMethodWarning:'use #replaceAny:with:'.
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1817
    ^ self replaceAny:aCollection with:newObject from:1 to:self size 
362
claus
parents: 360
diff changeset
  1818
claus
parents: 360
diff changeset
  1819
    "
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1820
     '123123abc123' replaceAny:#($1 $2) with:$*
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1821
     #('foo' 'bar' 'foo' 'baz' foo 1 2 3) replaceAny:#(foo 1) with:'*'
362
claus
parents: 360
diff changeset
  1822
    "
claus
parents: 360
diff changeset
  1823
!
293
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1824
362
claus
parents: 360
diff changeset
  1825
replaceAny:aCollection by:newObject from:startIndex to:stopIndex
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1826
    "backward ST/X compatibility; alias for #replaceAny:with:from:to:.
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1827
     Pleace do no longer use this one;
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1828
     instead use #replaceAny:with:from:to: for naming consistence."
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1829
    
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1830
    self obsoleteMethodWarning:'use #replaceAny:with:from:to:'.
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1831
    ^ self replaceAny:aCollection with:newObject from:startIndex to:stopIndex 
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1832
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1833
    "
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1834
     '123123abc123' replaceAny:#($1 $2) with:$* from:1 to:6      
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1835
     #('foo' 'bar' 'foo' 'baz' foo 1 2 3) replaceAny:#(foo 1) with:'*'  
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1836
    "
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1837
!
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1838
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1839
replaceAny:aCollection with:newObject from:startIndex to:stopIndex
362
claus
parents: 360
diff changeset
  1840
    "replace all elements within a range,
claus
parents: 360
diff changeset
  1841
     which are in contained in aCollection by newObject.
claus
parents: 360
diff changeset
  1842
     Notice: This operation modifies the receiver, NOT a copy;
claus
parents: 360
diff changeset
  1843
     therefore the change may affect all others referencing the receiver."
claus
parents: 360
diff changeset
  1844
claus
parents: 360
diff changeset
  1845
    |start "{ Class: SmallInteger }"
claus
parents: 360
diff changeset
  1846
     stop "{ Class: SmallInteger }"|
claus
parents: 360
diff changeset
  1847
claus
parents: 360
diff changeset
  1848
    start := startIndex.
claus
parents: 360
diff changeset
  1849
    stop := stopIndex.
claus
parents: 360
diff changeset
  1850
    startIndex to:stopIndex do:[:index |
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1851
	(aCollection includes:(self at:index)) ifTrue:[
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1852
	    self at:index put:newObject
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1853
	]
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1854
    ]
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1855
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1856
    "
2927
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1857
     '123123abc123' replaceAny:#($1 $2) with:$* from:1 to:6      
1434c3d7f78a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1858
     #('foo' 'bar' 'foo' 'baz' foo 1 2 3) replaceAny:#(foo 1) with:'*'  
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1859
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1860
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1861
2413
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1862
replaceFrom:start count:numberOfElements with:replacementCollection
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1863
    "replace numberOfElements elements in the receiver from index start,
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1864
     with elements taken from replacementCollection starting at 1.
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1865
     Notice: This operation modifies the receiver, NOT a copy;
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1866
     therefore the change may affect all others referencing the receiver."
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1867
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1868
    ^ self replaceFrom:start
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1869
                    to:(start + numberOfElements - 1)
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1870
                  with:replacementCollection
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1871
            startingAt:1
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1872
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1873
    "
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1874
     '1234567890' replaceFrom:5 count:3 with:'abcdef'  
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1875
     #($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
  1876
    "
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1877
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1878
    "Modified: 20.2.1997 / 14:24:38 / cg"
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1879
!
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1880
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1881
replaceFrom:start count:numberOfElementsToReplace with:replacementCollection startingAt:repStart
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1882
    "replace numberOfElementsToReplace elements in the receiver from index start,
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1883
     with elements  taken from replacementCollection starting at repStart.
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1884
     Notice: This operation modifies the receiver, NOT a copy;
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1885
     therefore the change may affect all others referencing the receiver."
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1886
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1887
    ^ self
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1888
        replaceFrom:start
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1889
        to:(start + numberOfElementsToReplace - 1)
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1890
        with:replacementCollection
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1891
        startingAt:repStart
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1892
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1893
    "
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1894
     '1234567890' replaceFrom:5 count:3 with:'abcdef' startingAt:3  
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1895
     #($a $b $c $d $e) replaceFrom:2 count:3 with:'12345' startingAt:4 
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1896
     #($a $b $c $d $e) asOrderedCollection replaceFrom:2 count:3 with:'12345' startingAt:4 
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1897
    "
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1898
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1899
    "Modified: 20.2.1997 / 14:26:12 / cg"
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1900
!
a3f91741d7ba added #replaceFrom:count:* methods
Claus Gittinger <cg@exept.de>
parents: 2411
diff changeset
  1901
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1902
replaceFrom:start to:stop with:replacementCollection
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1903
    "replace elements in the receiver between index start and stop,
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1904
     with elements taken from replacementCollection starting at 1.
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1905
     Notice: This operation modifies the receiver, NOT a copy;
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1906
     therefore the change may affect all others referencing the receiver."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1907
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1908
    ^ self replaceFrom:start
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1909
		    to:stop
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1910
		  with:replacementCollection
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1911
	    startingAt:1
61
claus
parents: 44
diff changeset
  1912
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1913
    "
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1914
     '1234567890' replaceFrom:5 to:7 with:'abcdef'
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1915
     #($a $b $c $d $e) replaceFrom:2 to:3 with:'12345'
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1916
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1917
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1918
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1919
replaceFrom:start to:stop with:replacementCollection startingAt:repStart
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1920
    "replace elements in the receiver between index start and stop,
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1921
     with elements  taken from replacementCollection starting at repStart.
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1922
     Notice: This operation modifies the receiver, NOT a copy;
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  1923
     therefore the change may affect all others referencing the receiver."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1924
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1925
    |srcIndex "{ Class: SmallInteger }"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1926
     dstIndex "{ Class: SmallInteger }"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1927
     end      "{ Class: SmallInteger }" |
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1928
293
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1929
    (repStart < start) ifTrue:[
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1930
	" must do reverse copy "
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1931
	srcIndex := repStart + (stop - start).
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1932
	dstIndex := stop.
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1933
	end := start.
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1934
	[dstIndex >= end] whileTrue:[
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1935
	    self at:dstIndex put:(replacementCollection at:srcIndex).
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1936
	    srcIndex := srcIndex - 1.
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1937
	    dstIndex := dstIndex - 1
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1938
	].
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  1939
	^ self
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1940
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1941
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1942
    srcIndex := repStart.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1943
    dstIndex := start.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1944
    end := stop.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1945
    [dstIndex <= end] whileTrue:[
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1946
	self at:dstIndex put:(replacementCollection at:srcIndex).
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1947
	srcIndex := srcIndex + 1.
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  1948
	dstIndex := dstIndex + 1
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1949
    ]
61
claus
parents: 44
diff changeset
  1950
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1951
    "
282
94f5c3a6230d *** empty log message ***
claus
parents: 266
diff changeset
  1952
     '1234567890' replaceFrom:5 to:7 with:'abcdef' startingAt:3  
94f5c3a6230d *** empty log message ***
claus
parents: 266
diff changeset
  1953
     #($a $b $c $d $e) replaceFrom:2 to:3 with:'12345' startingAt:4 
94f5c3a6230d *** empty log message ***
claus
parents: 266
diff changeset
  1954
     #($a $b $c $d $e) asOrderedCollection replaceFrom:2 to:3 with:'12345' startingAt:4 
94f5c3a6230d *** empty log message ***
claus
parents: 266
diff changeset
  1955
94f5c3a6230d *** empty log message ***
claus
parents: 266
diff changeset
  1956
     |c|
94f5c3a6230d *** empty log message ***
claus
parents: 266
diff changeset
  1957
     c := #($a $b $c $d $e) asOrderedCollection.
94f5c3a6230d *** empty log message ***
claus
parents: 266
diff changeset
  1958
     c replaceFrom:2 to:3 with:c startingAt:4  
94f5c3a6230d *** empty log message ***
claus
parents: 266
diff changeset
  1959
94f5c3a6230d *** empty log message ***
claus
parents: 266
diff changeset
  1960
     |c|
94f5c3a6230d *** empty log message ***
claus
parents: 266
diff changeset
  1961
     c := #($a $b $c $d $e) asOrderedCollection.
94f5c3a6230d *** empty log message ***
claus
parents: 266
diff changeset
  1962
     c replaceFrom:4 to:5 with:c startingAt:2  
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  1963
    "
61
claus
parents: 44
diff changeset
  1964
!
claus
parents: 44
diff changeset
  1965
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1966
replaceFrom:start with:replacementCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1967
    "replace elements in the receiver starting at start,
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1968
     with elements taken from replacementCollection starting at 1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1969
     to the end of replacementCollection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1970
     Notice: This operation modifies the receiver, NOT a copy;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1971
     therefore the change may affect all others referencing the receiver."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1972
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1973
    ^ self replaceFrom:start 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1974
		    to:(start + replacementCollection size - 1)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1975
		  with:replacementCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1976
	    startingAt:1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1977
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1978
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1979
     '1234567890' replaceFrom:5 with:'abc'
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1980
     #($a $b $c $d $e) replaceFrom:2 with:'123'
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1981
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1982
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1983
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1984
replaceFrom:start with:replacementCollection startingAt:offset
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1985
    "replace elements in the receiver starting at start,
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1986
     with elements taken from replacementCollection starting at offset
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1987
     to the end of replacementCollection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1988
     Notice: This operation modifies the receiver, NOT a copy;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1989
     therefore the change may affect all others referencing the receiver."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1990
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1991
    ^ self replaceFrom:start 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1992
		    to:(start + replacementCollection size - offset)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1993
		  with:replacementCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1994
	    startingAt:offset
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1995
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1996
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1997
     '1234567890' replaceFrom:5 with:'abcdef' startingAt:3
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1998
     #($a $b $c $d $e) replaceFrom:2 with:'12345' startingAt:4
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1999
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2000
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2001
61
claus
parents: 44
diff changeset
  2002
startingAt:sourceStart replaceElementsIn:destColl from:destStartIndex to:destEndIndex
claus
parents: 44
diff changeset
  2003
    "replace elements in destColl with elements from the receiver.
claus
parents: 44
diff changeset
  2004
     Notice: This operation modifies the destination collection, NOT a copy;
claus
parents: 44
diff changeset
  2005
     therefore the change may affect all others referencing this object."
claus
parents: 44
diff changeset
  2006
claus
parents: 44
diff changeset
  2007
    destColl replaceFrom:destStartIndex to:destEndIndex with:self startingAt:sourceStart
claus
parents: 44
diff changeset
  2008
claus
parents: 44
diff changeset
  2009
    "
claus
parents: 44
diff changeset
  2010
     |s|
claus
parents: 44
diff changeset
  2011
     s := 'abcdefghijklmnop'.
claus
parents: 44
diff changeset
  2012
     '1234567890' startingAt:1 replaceElementsIn:s from:1 to:3.
claus
parents: 44
diff changeset
  2013
     s'123defghijklmnop'
claus
parents: 44
diff changeset
  2014
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2015
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2016
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2017
!SequenceableCollection methodsFor:'private sorting helpers'!
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2018
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2019
quickSortFrom:inBegin to:inEnd
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2020
    "actual quicksort worker for sort-message"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2021
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2022
    |begin   "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2023
     end     "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2024
     b       "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2025
     e       "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2026
     middleElement temp1 temp2 |
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2027
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2028
    begin := inBegin.   "/ this also does a type-check
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2029
    end := inEnd.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2030
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2031
    b := begin.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2032
    e := end.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2033
    middleElement := self at:((b + e) // 2).
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2034
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2035
    [b < e] whileTrue:[
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2036
	[b < end and:[(self at:b) < middleElement]] whileTrue:[b := b + 1].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2037
	[e > begin and:[middleElement < (self at:e)]] whileTrue:[e := e - 1].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2038
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2039
	(b <= e) ifTrue:[
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2040
	    (b == e) ifFalse:[
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2041
		temp1 := self at:b. temp2 := self at:e. 
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2042
		self at:b put:temp2. self at:e put:temp1
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2043
	    ].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2044
	    b := b + 1.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2045
	    e := e - 1
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2046
	]
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2047
    ].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2048
    (begin < e) ifTrue:[self quickSortFrom:begin to:e].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2049
    (b < end) ifTrue:[self quickSortFrom:b to:end]
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2050
!
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2051
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2052
quickSortFrom:inBegin to:inEnd sortBlock:sortBlock
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2053
    "actual quicksort worker for sort:-message"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2054
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2055
    |begin   "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2056
     end     "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2057
     b       "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2058
     e       "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2059
     middleElement temp1 temp2 |
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2060
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2061
    begin := inBegin.   "/ this also does a type-check
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2062
    end := inEnd.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2063
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2064
    b := begin.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2065
    e := end.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2066
    middleElement := self at:((b + e) // 2).
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2067
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2068
    [b < e] whileTrue:[
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2069
	[b < end and:[sortBlock value:(self at:b) value:middleElement]] whileTrue:[b := b + 1].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2070
	[e > begin and:[sortBlock value:middleElement value:(self at:e)]] whileTrue:[e := e - 1].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2071
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2072
	(b <= e) ifTrue:[
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2073
	    (b == e) ifFalse:[
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2074
		temp1 := self at:b. temp2 := self at:e. 
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2075
		self at:b put:temp2. self at:e put:temp1
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2076
	    ].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2077
	    b := b + 1.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2078
	    e := e - 1
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2079
	]
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2080
    ].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2081
    (begin < e) ifTrue:[self quickSortFrom:begin to:e sortBlock:sortBlock].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2082
    (b < end) ifTrue:[self quickSortFrom:b to:end sortBlock:sortBlock]
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2083
!
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2084
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2085
quickSortFrom:inBegin to:inEnd sortBlock:sortBlock with:aCollection
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2086
    "actual quicksort worker for sort:with:-message"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2087
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2088
    |begin   "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2089
     end     "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2090
     b       "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2091
     e       "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2092
     middleElement temp1 temp2 |
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2093
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2094
    begin := inBegin.   "/ this also does a type-check
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2095
    end := inEnd.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2096
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2097
    b := begin.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2098
    e := end.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2099
    middleElement := self at:((b + e) // 2).
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2100
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2101
    [b < e] whileTrue:[
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2102
        [b < end and:[sortBlock value:(self at:b) value:middleElement]] whileTrue:[b := b + 1].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2103
        [e > begin and:[sortBlock value:middleElement value:(self at:e)]] whileTrue:[e := e - 1].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2104
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2105
        (b <= e) ifTrue:[
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2106
            (b == e) ifFalse:[
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2107
                temp1 := self at:b. temp2 := self at:e. 
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2108
                self at:b put:temp2. self at:e put:temp1.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2109
                temp1 := aCollection at:b. temp2 := aCollection at:e. 
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2110
                aCollection at:b put:temp2. aCollection at:e put:temp1
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2111
            ].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2112
            b := b + 1.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2113
            e := e - 1
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2114
        ]
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2115
    ].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2116
    (begin < e) ifTrue:[self quickSortFrom:begin to:e sortBlock:sortBlock with:aCollection].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2117
    (b < end) ifTrue:[self quickSortFrom:b to:end sortBlock:sortBlock with:aCollection]
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2118
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2119
    "Modified: 5.1.1997 / 18:12:36 / cg"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2120
!
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2121
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2122
quickSortFrom:inBegin to:inEnd with:aCollection
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2123
    "actual quicksort worker for sortWith-message"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2124
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2125
    |begin   "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2126
     end     "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2127
     b       "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2128
     e       "{ Class: SmallInteger }"
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2129
     middleElement temp1 temp2 |
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2130
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2131
    begin := inBegin.   "/ this also does a type-check
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2132
    end := inEnd.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2133
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2134
    b := begin.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2135
    e := end.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2136
    middleElement := self at:((b + e) // 2).
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2137
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2138
    [b < e] whileTrue:[
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2139
	[b < end and:[(self at:b) < middleElement]] whileTrue:[b := b + 1].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2140
	[e > begin and:[middleElement < (self at:e)]] whileTrue:[e := e - 1].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2141
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2142
	(b <= e) ifTrue:[
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2143
	    (b == e) ifFalse:[
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2144
		temp1 := self at:b. temp2 := self at:e. 
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2145
		self at:b put:temp2. self at:e put:temp1.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2146
		temp1 := aCollection at:b. temp2 := aCollection at:e. 
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2147
		aCollection at:b put:temp2. aCollection at:e put:temp1
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2148
	    ].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2149
	    b := b + 1.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2150
	    e := e - 1
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2151
	]
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2152
    ].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2153
    (begin < e) ifTrue:[self quickSortFrom:begin to:e with:aCollection].
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2154
    (b < end) ifTrue:[self quickSortFrom:b to:end with:aCollection]
2881
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2155
!
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2156
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2157
randomizedQuickSortFrom:inBegin to:inEnd sortBlock:sortBlock with:aCollection
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2158
    "actual randomizedQuicksort worker for sort:with:-message.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2159
     This exchanges a random element within the partition, to avoid
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2160
     the worst case O-square situation of quickSort.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2161
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2162
     Notice, that this method has a much worse best- and average case
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2163
     runTime, due to the random number generation.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2164
     The worst case of quickSort is encountered, if the choosen pivot
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2165
     element lies at either end of the partition, so that a split
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2166
     creates partitions of size 1 and (n-1).
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2167
     Since the middle element is choosen, this worst case is very unlikely
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2168
     to be encountered."
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2169
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2170
    |begin   "{ Class: SmallInteger }"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2171
     end     "{ Class: SmallInteger }"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2172
     b       "{ Class: SmallInteger }"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2173
     e       "{ Class: SmallInteger }"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2174
     rnd     "{ Class: SmallInteger }"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2175
     middleElement temp1 temp2 |
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2176
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2177
    begin := inBegin.   "/ this also does a type-check
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2178
    end := inEnd.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2179
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2180
    b := begin.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2181
    e := end.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2182
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2183
    "/ randomize that partition
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2184
    "/ by exchanging the first element with any random
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2185
    "/ element.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2186
    rnd := Random nextIntegerBetween:b and:e.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2187
    temp1 := self at:b. temp2 := self at:rnd.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2188
    self at:b put:temp2. self at:rnd put:temp1.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2189
    aCollection notNil ifTrue:[
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2190
        temp1 := aCollection at:b. temp2 := aCollection at:rnd. 
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2191
        aCollection at:b put:temp2. aCollection at:rnd put:temp1
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2192
    ].
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2193
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2194
    "/
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2195
    "/ now proceed as usual
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2196
    "/
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2197
    middleElement := self at:((b + e) // 2).
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2198
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2199
    [b < e] whileTrue:[
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2200
        [b < end and:[sortBlock value:(self at:b) value:middleElement]] whileTrue:[b := b + 1].
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2201
        [e > begin and:[sortBlock value:middleElement value:(self at:e)]] whileTrue:[e := e - 1].
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2202
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2203
        (b <= e) ifTrue:[
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2204
            (b == e) ifFalse:[
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2205
                temp1 := self at:b. temp2 := self at:e. 
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2206
                self at:b put:temp2. self at:e put:temp1.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2207
                aCollection notNil ifTrue:[
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2208
                    temp1 := aCollection at:b. temp2 := aCollection at:e. 
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2209
                    aCollection at:b put:temp2. aCollection at:e put:temp1
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2210
                ].
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2211
            ].
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2212
            b := b + 1.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2213
            e := e - 1
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2214
        ]
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2215
    ].
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2216
    (begin < e) ifTrue:[self randomizedQuickSortFrom:begin to:e sortBlock:sortBlock with:aCollection].
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2217
    (b < end) ifTrue:[self randomizedQuickSortFrom:b to:end sortBlock:sortBlock with:aCollection]
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2218
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2219
    "Created: 21.8.1997 / 18:13:35 / cg"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2220
    "Modified: 21.8.1997 / 18:34:31 / cg"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2221
!
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2222
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2223
randomizedQuickSortFrom:inBegin to:inEnd with:aCollection
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2224
    "actual randomizedQuicksort worker for randomizedSort:-message.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2225
     This exchanges a random element within the partition, to avoid
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2226
     the worst case O-square situation of quickSort.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2227
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2228
     Notice, that this method has a much worse best- and average case
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2229
     runTime, due to the random number generation.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2230
     The worst case of quickSort is encountered, if the choosen pivot
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2231
     element lies at either end of the partition, so that a split
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2232
     creates partitions of size 1 and (n-1).
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2233
     Since the middle element is choosen, this worst case is very unlikely
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2234
     to be encountered."
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2235
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2236
    |begin   "{ Class: SmallInteger }"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2237
     end     "{ Class: SmallInteger }"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2238
     b       "{ Class: SmallInteger }"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2239
     e       "{ Class: SmallInteger }"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2240
     rnd     "{ Class: SmallInteger }"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2241
     middleElement temp1 temp2 |
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2242
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2243
    begin := inBegin.   "/ this also does a type-check
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2244
    end := inEnd.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2245
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2246
    b := begin.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2247
    e := end.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2248
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2249
    "/ randomize that partition
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2250
    "/ by exchanging the first element with any random
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2251
    "/ element.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2252
    rnd := Random nextIntegerBetween:b and:e.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2253
    temp1 := self at:b. temp2 := self at:rnd.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2254
    self at:b put:temp2. self at:rnd put:temp1.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2255
    aCollection notNil ifTrue:[
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2256
        temp1 := aCollection at:b. temp2 := aCollection at:rnd. 
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2257
        aCollection at:b put:temp2. aCollection at:rnd put:temp1
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2258
    ].
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2259
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2260
    "/
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2261
    "/ now proceed as usual
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2262
    "/
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2263
    middleElement := self at:((b + e) // 2).
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2264
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2265
    [b < e] whileTrue:[
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2266
        [b < end and:[(self at:b) < middleElement]] whileTrue:[b := b + 1].
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2267
        [e > begin and:[middleElement < (self at:e)]] whileTrue:[e := e - 1].
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2268
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2269
        (b <= e) ifTrue:[
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2270
            (b == e) ifFalse:[
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2271
                temp1 := self at:b. temp2 := self at:e. 
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2272
                self at:b put:temp2. self at:e put:temp1.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2273
                aCollection notNil ifTrue:[
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2274
                    temp1 := aCollection at:b. temp2 := aCollection at:e. 
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2275
                    aCollection at:b put:temp2. aCollection at:e put:temp1
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2276
                ].
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2277
            ].
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2278
            b := b + 1.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2279
            e := e - 1
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2280
        ]
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2281
    ].
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2282
    (begin < e) ifTrue:[self randomizedQuickSortFrom:begin to:e with:aCollection].
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2283
    (b < end) ifTrue:[self randomizedQuickSortFrom:b to:end with:aCollection]
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2284
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2285
    "Modified: 21.8.1997 / 18:30:19 / cg"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  2286
    "Created: 21.8.1997 / 18:34:23 / cg"
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2287
! !
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2288
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2289
!SequenceableCollection methodsFor:'queries'!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2290
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2291
firstIndex
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2292
    "return the first elements index"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2293
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2294
    ^ 1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2295
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2296
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2297
isSequenceable
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2298
    "return true, if the receiver is some kind of sequenceableCollection"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2299
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2300
    ^ true
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2301
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2302
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2303
isSequenceableCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2304
    "OBSOLETE: use isSequenceable for ST-80 compatibility.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2305
     This method is a historic leftover and will be removed."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2306
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2307
    ^ true
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2308
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2309
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2310
keys
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2311
    "return a collection with all keys in the Smalltalk dictionary"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2312
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2313
    |sz|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2314
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2315
    sz := self size.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2316
    sz == 0 ifTrue:[
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2317
	^ #()
61
claus
parents: 44
diff changeset
  2318
    ].
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2319
    ^ 1 to:sz
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2320
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2321
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2322
lastIndex
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2323
    "return the last elements index"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2324
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2325
    ^ self size
61
claus
parents: 44
diff changeset
  2326
!
claus
parents: 44
diff changeset
  2327
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2328
size
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2329
    "return the number of elements in the collection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2330
     concrete implementations must define this"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2331
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2332
    ^ self subclassResponsibility
2165
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  2333
!
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  2334
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  2335
zeroIndex
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  2336
    "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
  2337
     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
  2338
     ST-compatibility"
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  2339
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  2340
    ^ 0
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  2341
9ef030343739 added #zeroIndex for protocol completeness (ST-80)
Claus Gittinger <cg@exept.de>
parents: 2069
diff changeset
  2342
    "Created: 14.2.1997 / 16:13:03 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2343
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2344
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2345
!SequenceableCollection methodsFor:'searching'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2346
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2347
detect:aBlock ifNone:exceptionBlock
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2348
    "find the first element, for which evaluation of the argument, aBlock
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2349
     return true; if none does so, return the evaluation of exceptionBlock
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2350
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2351
    reimplemented here for speed"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2352
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  2353
    |stop  "{ Class: SmallInteger }"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2354
     element|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2355
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  2356
    stop := self size.
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  2357
    1 to:stop do:[:index |
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2358
	element := self at:index.
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2359
	(aBlock value:element) ifTrue:[
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2360
	    ^ element
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2361
	].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2362
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2363
    ^ exceptionBlock value
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2364
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2365
    "
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2366
     #(11 12 13 14) detect:[:n | n odd] ifNone:['sorry']    
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2367
     #(12 14 16 18) detect:[:n | n odd] ifNone:['sorry']     
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2368
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2369
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2370
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2371
findFirst:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2372
    "find the first element, for which evaluation of the argument, aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2373
     returns true; return its index or 0 if none detected."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2374
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2375
    |stop  "{ Class: SmallInteger }" |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2376
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  2377
    stop := self size.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2378
    1 to:stop do:[:index |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2379
	(aBlock value:(self at:index)) ifTrue:[^ index].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2380
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2381
    ^ 0
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2382
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  2383
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2384
     #(1 2 3 4 5 6) findFirst:[:x | (x >= 3)]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2385
     #(1 2 3 4 5 6) findFirst:[:x | (x >= 3) and:[x even]]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2386
     #(1 2 3 4 5 6) findFirst:[:x | (x >= 8)]           
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2387
     'one.two.three' findFirst:[:c | (c == $.)]
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  2388
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2389
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2390
929
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2391
findFirst:aBlock startingAt:startIndex
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2392
    "find the first element, for which evaluation of the argument, aBlock
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2393
     returns true; return its index or 0 if none detected."
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2394
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2395
    |start "{ Class: SmallInteger }"
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2396
     stop  "{ Class: SmallInteger }" |
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2397
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2398
    start := startIndex. "/ as a compiler hint
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2399
    stop := self size.
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2400
    start to:stop do:[:index |
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2401
	(aBlock value:(self at:index)) ifTrue:[^ index].
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2402
    ].
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2403
    ^ 0
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2404
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2405
    "
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2406
     #(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
  2407
     'one.two.three' findFirst:[:c | (c == $.)] startingAt:5
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2408
    "
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2409
!
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2410
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2411
findLast:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2412
    "find the last element, for which evaluation of the argument, aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2413
     returns true; return its index or 0 if none detected."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2414
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2415
    |start "{ Class: SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2416
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2417
    start := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2418
    start to:1 by:-1 do:[:index |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2419
	(aBlock value:(self at:index)) ifTrue:[^ index].
252
  2420
    ].
  2421
    ^ 0
  2422
  2423
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2424
     #(1 99 3 99 5 6) findLast:[:x | (x == 99)]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2425
     'one.two.three' findLast:[:c | (c == $.)]
252
  2426
    "
  2427
!
  2428
929
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2429
findLast:aBlock startingAt:startIndex
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2430
    "find the last element, for which evaluation of the argument, aBlock
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2431
     returns true; return its index or 0 if none detected."
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2432
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2433
    |start "{ Class: SmallInteger }"|
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2434
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2435
    start := startIndex.
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2436
    start to:1 by:-1 do:[:index |
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2437
	(aBlock value:(self at:index)) ifTrue:[^ index].
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2438
    ].
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2439
    ^ 0
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2440
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2441
    "
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2442
     #(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
  2443
     'one.two.three' findLast:[:c | (c == $.)] startingAt:7
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2444
    "
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2445
!
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  2446
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2447
identityIndexOf:anElement
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2448
    "search the collection for anElement using identity compare (i.e. ==);
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2449
     if found, return the index otherwise return 0."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2450
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  2451
    ^ self identityIndexOf:anElement startingAt:1
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  2452
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  2453
    "
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2454
     #(10 20 30 40 50 60 70) identityIndexOf:40
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2455
     #(10 20 30 40 50 60 70) identityIndexOf:40.0
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2456
     #(10 20 30 40 50 60 70) indexOf:40.0
360
claus
parents: 359
diff changeset
  2457
claus
parents: 359
diff changeset
  2458
    be careful:
claus
parents: 359
diff changeset
  2459
claus
parents: 359
diff changeset
  2460
     #(10 20 30 40.0 50 60 70) indexOf:40.0
claus
parents: 359
diff changeset
  2461
     #(10 20 30 40.0 50 60 70) identityIndexOf:40.0
claus
parents: 359
diff changeset
  2462
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  2463
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2464
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2465
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2466
identityIndexOf:anElement ifAbsent:exceptionBlock
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2467
    "search the collection for anElement using identity compare (i.e. ==);
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2468
     if found, return the index otherwise return the value of the
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2469
     exceptionBlock."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2470
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2471
    |index|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2472
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  2473
    index := self identityIndexOf:anElement startingAt:1.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2474
    (index == 0) ifTrue:[^ exceptionBlock value].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2475
    ^ index
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2476
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2477
    "
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2478
     #(10 20 30 40 50 60 70) identityIndexOf:40  ifAbsent:['none']  
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2479
     #(10 20 30 40 50 60 70) identityIndexOf:35  ifAbsent:['none']  
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2480
     #(10 20 30 40 50 60 70) identityIndexOf:40.0 ifAbsent:['none'] 
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2481
     #(10 20 30 40 50 60 70) indexOf:40.0         ifAbsent:['none'] 
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2482
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2483
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2484
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2485
identityIndexOf:anElement startingAt:start
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2486
    "search the collection for anElement, starting search at index start
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2487
     using identity compare  (i.e. ==);
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2488
     if found, return the index otherwise return 0."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2489
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  2490
    |startIndex "{ Class: SmallInteger }"
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  2491
     stop       "{ Class: SmallInteger }" |
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2492
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  2493
    startIndex := start.
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  2494
    stop := self size.
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  2495
    startIndex to:stop do:[:index |
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2496
	anElement == (self at:index) ifTrue:[^ index].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2497
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2498
    ^ 0
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
  2499
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  2500
    "
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2501
     #(10 20 30 40 10 20 30 40) identityIndexOf:40   startingAt:5
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2502
     #(10 20 30 40 10 20 30 40) identityIndexOf:40.0 startingAt:5
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2503
     #(10 20 30 40 10 20 30 40) indexOf:40.0         startingAt:5 
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  2504
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2505
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2506
1159
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2507
identityIndexOf:anElement startingAt:start endingAt:stop
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2508
    "search the collection for anElement, starting the search at index start;
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2509
     ending at stop.
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2510
     If found (within the range), return the index, otherwise return 0.
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2511
     The comparison is done using = 
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2512
     (i.e. equality test - not identity test)."
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2513
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2514
    |startIndex "{ Class: SmallInteger }"
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2515
     stopIndex  "{ Class: SmallInteger }" |
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2516
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2517
    startIndex := start.
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2518
    stopIndex := self size min:stop.
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2519
    startIndex to:stopIndex do:[:index |
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2520
        anElement == (self at:index) ifTrue:[^ index].
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2521
    ].
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2522
    ^ 0
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2523
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2524
    "Created: 12.4.1996 / 18:23:07 / cg"
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2525
!
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2526
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2527
identityIndexOf:anElement startingAt:start ifAbsent:exceptionBlock
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2528
    "search the collection for anElement, starting search at index start;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2529
     if found, return the index otherwise return the value of the
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2530
     exceptionBlock.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2531
     This one searches for identical objects (i.e. ==)."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2532
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2533
    |index|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2534
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2535
    index := self identityIndexOf:anElement startingAt:start.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2536
    (index == 0) ifTrue:[^ exceptionBlock value].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2537
    ^ index
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2538
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2539
    "
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2540
     #(10 20 30 40 10) identityIndexOf:10 startingAt:3 ifAbsent:['none'] 
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2541
     #(10 20 30 40 10) identityIndexOf:35 startingAt:3 ifAbsent:['none'] 
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2542
    "
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2543
!
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2544
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2545
includes:anElement
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2546
    "return true if the collection contains anElement; false otherwise.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2547
     Comparison is done using equality compare (i.e. =).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2548
     See #includesIdentical: if identity is asked for."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2549
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2550
    ((self indexOf:anElement startingAt:1) == 0) ifTrue:[^ false].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2551
    ^ true
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2552
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2553
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2554
     #(10 20 30 40 50 60 70) includes:99      
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2555
     #(10 20 30 40 50 60 70) includes:40     
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2556
     #(10 20 30 40 50 60 70) includes:40.0    
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2557
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2558
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2559
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2560
includesIdentical:anElement
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2561
    "return true if the collection contains anElement; false otherwise.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2562
     Comparison is done using identity compare (i.e. ==).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2563
     See #includes: if equality is asked for."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2564
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2565
    ((self identityIndexOf:anElement startingAt:1) == 0) ifTrue:[^ false].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2566
    ^ true
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2567
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2568
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2569
     #(10 20 30 40 50 60 70) includesIdentical:40     
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2570
     #(10 20 30 40 50 60 70) includesIdentical:40.0    
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2571
     #(10 20 30 40 50 60 70) includes:40     
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2572
     #(10 20 30 40 50 60 70) includes:40.0    
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2573
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2574
     be careful:
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2575
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2576
     #(10 20 30 40.0 50 60 70) includes:40.0    
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2577
     #(10 20 30 40.0 50 60 70) includesIdentical:40.0    
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2578
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2579
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2580
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2581
indexOf:anElement
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2582
    "search the collection for anElement;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2583
     if found, return the index otherwise return 0.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2584
     The comparison is done using = 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2585
     (i.e. equality test - not identity test)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2586
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2587
    ^ self indexOf:anElement startingAt:1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2588
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2589
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2590
     #(10 20 30 40 50 60 70) indexOf:40
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2591
     #(10 20 30 40 50 60 70) indexOf:40.0
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2592
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2593
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2594
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2595
indexOf:anElement ifAbsent:exceptionBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2596
    "search the collection for anElement;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2597
     if found, return the index otherwise return the value of the
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2598
     exceptionBlock.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2599
     The comparison is done using = 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2600
     (i.e. equality test - not identity test)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2601
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2602
    |index|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2603
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2604
    index := self indexOf:anElement startingAt:1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2605
    (index == 0) ifTrue:[^ exceptionBlock value].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2606
    ^ index
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2607
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2608
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2609
     #(10 20 30 40 10 20 30 40) indexOf:40   ifAbsent:['none'] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2610
     #(10 20 30 40 10 20 30 40) indexOf:40.0 ifAbsent:['none'] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2611
     #(10 20 30 40 10 20 30 40) indexOf:35   ifAbsent:['none'] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2612
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2613
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2614
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2615
indexOf:elementToFind replaceWith:replacement startingAt:start stoppingAt:stop
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2616
    "search for the first occurence of elementToFind starting at start,
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2617
     stopping the search at stop. If found, replace the element by replacement
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2618
     and return the index.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2619
     If not found, return 0."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2620
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2621
    |idx|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2622
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2623
    idx := self indexOf:elementToFind startingAt:start.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2624
    ((idx > 0) and:[idx <= stop]) ifTrue:[
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2625
	self at:idx put:replacement.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2626
	^ idx
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2627
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2628
    ^ 0
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2629
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2630
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2631
     |a|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2632
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2633
     a := #(10 20 30 40 50 60 70).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2634
     (a indexOf:30 replaceWith:nil startingAt:1 stoppingAt:7) printNL.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2635
     a printNL.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2636
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2637
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2638
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2639
indexOf:anElement startingAt:start
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2640
    "search the collection for anElement, starting the search at index start;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2641
     if found, return the index otherwise return 0.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2642
     The comparison is done using = 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2643
     (i.e. equality test - not identity test)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2644
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2645
    |startIndex "{ Class: SmallInteger }"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2646
     stop       "{ Class: SmallInteger }" |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2647
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2648
    startIndex := start.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2649
    stop := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2650
    startIndex to:stop do:[:index |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2651
	anElement = (self at:index) ifTrue:[^ index].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2652
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2653
    ^ 0
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2654
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2655
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2656
     #(10 20 30 40 10 20 30 40) indexOf:40   startingAt:5  
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2657
     #(10 20 30 40 10 20 30 40) indexOf:40.0 startingAt:5  
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2658
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2659
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2660
1159
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2661
indexOf:anElement startingAt:start endingAt:stop
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2662
    "search the collection for anElement, starting the search at index start;
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2663
     ending at stop.
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2664
     If found (within the range), return the index, otherwise return 0.
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2665
     The comparison is done using = 
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2666
     (i.e. equality test - not identity test)."
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2667
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2668
    |startIndex "{ Class: SmallInteger }"
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2669
     stopIndex  "{ Class: SmallInteger }" |
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2670
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2671
    startIndex := start.
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2672
    stopIndex := self size min:stop.
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2673
    startIndex to:stopIndex do:[:index |
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2674
        anElement = (self at:index) ifTrue:[^ index].
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2675
    ].
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2676
    ^ 0
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2677
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2678
    "
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2679
     #(10 20 30 40 10 20 30 40) indexOf:40   startingAt:3 endingAt:99  
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2680
     #(10 20 30 40 10 20 30 40) indexOf:40   startingAt:3 endingAt:5  
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2681
     #(10 20 30 40 10 20 30 40) indexOf:40   startingAt:1 endingAt:3   
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2682
     #(10 20 30 40 10 20 30 40) indexOf:40.0 startingAt:5  
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2683
    "
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2684
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2685
    "Created: 12.4.1996 / 17:37:13 / cg"
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2686
!
dcbb3e070a05 added fallback methods #indexOf:startingAt:endingAt: / #identity...
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  2687
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2688
indexOf:anElement startingAt:start ifAbsent:exceptionBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2689
    "search the collection for anElement starting the search at index start;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2690
     if found, return the index otherwise return the value of the
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2691
     exceptionBlock.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2692
     The comparison is done using = 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2693
     (i.e. equality test - not identity test)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2694
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2695
    |index|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2696
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2697
    index := self indexOf:anElement startingAt:start.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2698
    (index == 0) ifTrue:[^ exceptionBlock value].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2699
    ^ index
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2700
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2701
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2702
     #(10 20 30 40 10 20 30 40) indexOf:40   startingAt:5 ifAbsent:['none'] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2703
     #(10 20 30 40 10 20 30 40) indexOf:40.0 startingAt:5 ifAbsent:['none'] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2704
     #(10 20 30 40 10 20 30 40) indexOf:35   startingAt:5 ifAbsent:['none'] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2705
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2706
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2707
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2708
indexOfAny:aCollection
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2709
    "search the collection for an element in aCollection.
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2710
     if found, return the index otherwise return 0.
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2711
     The comparison is done using = 
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2712
     (i.e. equality test - not identity test).
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2713
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2714
     Notice, that for big collections, the runtime of this search
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2715
     grows proportional to size(receiver) * size(aCollection).
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2716
     You may think about using other mechanisms (Sets, Dictionaries etc)."
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2717
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2718
    ^ self indexOfAny:aCollection startingAt:1
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2719
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2720
    "
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2721
     #(10 20 30 40 50 60 70) indexOfAny:#(40 30 50)
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2722
     #(10 20 30 40 50 60 70) indexOfAny:#(40.0 30.0 50)
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2723
    "
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2724
!
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2725
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2726
indexOfAny:aCollection startingAt:start
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2727
    "search the collection for an element in aCollection,
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2728
     starting the search at index start;
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2729
     if found, return the index otherwise return 0.
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2730
     The comparison is done using = 
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2731
     (i.e. equality test - not identity test).
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2732
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2733
     Notice, that for big collections, the runtime of this search
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2734
     grows proportional to size(receiver) * size(aCollection).
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2735
     You may think about using other mechanisms (Sets, Dictionaries etc)."
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2736
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2737
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2738
    |startIndex "{ Class: SmallInteger }"
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2739
     stop       "{ Class: SmallInteger }" |
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2740
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2741
    startIndex := start.
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2742
    stop := self size.
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2743
    startIndex to:stop do:[:index |
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2744
	(aCollection includes:(self at:index)) ifTrue:[^ index].
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2745
    ].
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2746
    ^ 0
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2747
    "
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2748
     #(10 20 30 40 10 20 30 40) indexOfAny:#(40 50 30) startingAt:5  
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2749
     #(10 20 30 40 10 20 30 40) indexOfAny:#(40.0 50 30.0) startingAt:5  
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  2750
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2751
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2752
518
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2753
indexOfAny:aCollection startingAt:start ifAbsent:exceptionBlock
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2754
    "search the collection for an element in aCollection,
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2755
     starting the search at index start;
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2756
     if found, return the index. If not, return the value returned by exceptionBlock.
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2757
     The comparison is done using = 
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2758
     (i.e. equality test - not identity test).
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2759
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2760
     Notice, that for big collections, the runtime of this search
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2761
     grows proportional to size(receiver) * size(aCollection).
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2762
     You may think about using other mechanisms (Sets, Dictionaries etc)."
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2763
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2764
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2765
    |val|
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2766
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2767
    val := self indexOfAny:aCollection startingAt:start .
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2768
    val == 0 ifTrue:[^ exceptionBlock value].
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2769
    ^ val.
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2770
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2771
    "
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2772
     #(10 20 30 40 10 20 30 40) indexOfAny:#(40 50 30) startingAt:5 ifAbsent:-1  
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2773
     #(10 20 30 40 10 20 30 40) indexOfAny:#(40.0 50 30.0) startingAt:5 ifAbsent:-1  
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2774
     #(10 20 30 40 10 20 30 40) indexOfAny:#(99 88 77) startingAt:5 ifAbsent:['oops']  
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2775
    "
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2776
!
5372a8875432 added indexOfAny:startingAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  2777
368
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2778
indexOfSubCollection:aCollection
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2779
    "find a subcollection. 
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2780
     If found, return the index; if not found, return 0."
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2781
1145
a094d90e11bf dont use [0] blocks - use 0 constant instead
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  2782
    ^ self indexOfSubCollection:aCollection startingAt:1 ifAbsent:0
368
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2783
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2784
    "
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2785
     #(1 2 3 4 5 6 7) indexOfSubCollection:#()  
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2786
     #(1 2 3 4 5 6 7) indexOfSubCollection:#(1)      
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2787
     #(1 2 3 4 5 6 7) indexOfSubCollection:#(1 2 3 4) 
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2788
     #(1 2 3 4 5 6 7) indexOfSubCollection:#(2 3 5)   
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2789
     #(1 2 3 2 3 4 5) indexOfSubCollection:#(2 3 4)  
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2790
     #(1 2 3 4 5 6 7) indexOfSubCollection:#(5 6 7)  
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2791
     #(1 2 3 4 5 6 7) indexOfSubCollection:#(5 6 8)  
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2792
     #(1 2 3 4 5 6 7) indexOfSubCollection:#(5 6 7 8)  
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2793
    "
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2794
!
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2795
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2796
indexOfSubCollection:aCollection ifAbsent:exceptionBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2797
    "find a subcollection. If found, return the index;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2798
     if not found, return the result of evaluating exceptionBlock."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2799
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2800
    ^ self indexOfSubCollection:aCollection startingAt:1 ifAbsent:exceptionBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2801
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2802
368
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2803
indexOfSubCollection:aCollection startingAt:startIndex
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2804
    "find a subcollection starting at index. 
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2805
     If found, return the index; if not found, return 0."
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2806
1145
a094d90e11bf dont use [0] blocks - use 0 constant instead
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  2807
    ^ self indexOfSubCollection:aCollection startingAt:startIndex ifAbsent:0
368
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2808
!
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2809
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2810
indexOfSubCollection:aCollection startingAt:startIndex ifAbsent:exceptionBlock
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2811
    "find a subcollection, starting at index. If found, return the index;
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2812
     if not found, return the result of evaluating exceptionBlock.
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2813
     This is a q&d hack - not very efficient"
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2814
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2815
    |same first 
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2816
     mySize     "{Class: SmallInteger }"
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2817
     checkIndex "{Class: SmallInteger }"
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2818
     cmpIndex   "{Class: SmallInteger }"
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2819
     sz         "{Class: SmallInteger }"|
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2820
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2821
    mySize := self size.
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2822
    sz := aCollection size.
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2823
    sz == 0 ifTrue:[^ exceptionBlock value].
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2824
    first := aCollection at:1.
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2825
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2826
    checkIndex := startIndex - 1.    
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2827
    [true] whileTrue:[
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2828
	checkIndex := self indexOf:first startingAt:checkIndex+1.
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2829
	checkIndex == 0 ifTrue:[^ exceptionBlock value].
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2830
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2831
	(checkIndex + sz - 1) > mySize ifTrue:[
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2832
	    ^ 0
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2833
	].
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2834
	same := true.
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2835
	cmpIndex := 1.
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2836
	[same and:[cmpIndex <= sz]] whileTrue:[
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2837
	    (self at:checkIndex + cmpIndex - 1) = (aCollection at:cmpIndex) ifFalse:[
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2838
		same := false
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2839
	    ] ifTrue:[
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2840
		cmpIndex := cmpIndex + 1
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2841
	    ]
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2842
	].
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2843
	same ifTrue:[^ checkIndex].
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2844
    ]    
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2845
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2846
    "
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2847
     #(1 2 3 4 5 6 7) indexOfSubCollection:#()  startingAt:2 
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2848
     #(1 2 3 4 5 6 7) indexOfSubCollection:#(1) startingAt:2     
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2849
     #(1 2 1 2 1 2 3) indexOfSubCollection:#(1 2 3) startingAt:2 
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2850
     #(1 2 1 2 1 2 3) indexOfSubCollection:#(1 2)   startingAt:2  
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2851
     #(1 2 1 2 1 2 3) indexOfSubCollection:#(1 2)   startingAt:3  
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2852
     #(1 2 1 2 1 2 3) indexOfSubCollection:#(1 2)   startingAt:4 
a3c21a89ec37 *** empty log message ***
claus
parents: 362
diff changeset
  2853
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2854
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2855
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2856
lastIndexOf:anElement
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2857
    "search the collection backwards for anElement;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2858
     if found, return the index otherwise return 0.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2859
     The comparison is done using = 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2860
     (i.e. equality test - not identity test)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2861
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2862
    ^ self lastIndexOf:anElement startingAt:self size 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2863
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2864
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2865
     #(10 20 30 40 50 60 70) lastIndexOf:40    
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2866
     #(10 20 30 40 50 60 70) lastIndexOf:40.0  
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2867
     #(10 20 30 40 50 60 70) lastIndexOf:35    
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2868
     #(10 20 30 40 50 60 70) lastIndexOf:10    
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2869
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2870
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2871
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2872
lastIndexOf:anElement ifAbsent:exceptionBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2873
    "search the collection backwards for anElement;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2874
     if found, return the index otherwise return the value of the
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2875
     exceptionBlock.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2876
     The comparison is done using = 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2877
     (i.e. equality test - not identity test)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2878
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2879
    |index|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2880
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2881
    index := self lastIndexOf:anElement startingAt:self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2882
    (index == 0) ifTrue:[^ exceptionBlock value].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2883
    ^ index
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2884
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2885
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2886
     #(10 20 30 40 10 20 30 40) lastIndexOf:40   ifAbsent:['none'] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2887
     #(10 20 30 40 10 20 30 40) lastIndexOf:40.0 ifAbsent:['none'] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2888
     #(10 20 30 40 10 20 30 40) lastIndexOf:35   ifAbsent:['none'] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2889
     #(10 20 30 40 10 20 30 40) lastIndexOf:10   ifAbsent:['none'] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2890
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2891
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2892
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2893
lastIndexOf:anElement startingAt:start
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2894
    "search the collection backwards for anElement, starting the search at index start;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2895
     if found, return the index otherwise return 0.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2896
     The comparison is done using = 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2897
     (i.e. equality test - not identity test)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2898
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2899
    |startIndex "{ Class: SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2900
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2901
    startIndex := start.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2902
    startIndex to:1 by:-1 do:[:index |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2903
	anElement = (self at:index) ifTrue:[^ index].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2904
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2905
    ^ 0
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2906
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2907
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2908
     #(10 20 30 40 10 20 30 40) lastIndexOf:40   startingAt:8  
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2909
     #(10 20 30 40 10 20 30 40) lastIndexOf:40.0 startingAt:8  
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2910
     #(10 20 30 40 10 20 30 40) lastIndexOf:35   startingAt:8  
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2911
     #(10 20 30 40 10 20 30 40) lastIndexOf:10   startingAt:8  
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2912
     #(10 20 30 40 10 20 30 40) lastIndexOf:10   startingAt:4  
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2913
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2914
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2915
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2916
lastIndexOf:anElement startingAt:start ifAbsent:exceptionBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2917
    "search the collection backwards for anElement starting the search at 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2918
     index start; if found, return the index 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2919
     otherwise return the value of the exceptionBlock.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2920
     The comparison is done using = 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2921
     (i.e. equality test - not identity test)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2922
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2923
    |index|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2924
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2925
    index := self lastIndexOf:anElement startingAt:start.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2926
    (index == 0) ifTrue:[^ exceptionBlock value].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2927
    ^ index
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2928
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2929
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2930
     #(10 20 30 40 10 20 30 40) lastIndexOf:40   startingAt:8 ifAbsent:['none'] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2931
     #(10 20 30 40 10 20 30 40) lastIndexOf:40.0 startingAt:8 ifAbsent:['none'] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2932
     #(10 20 30 40 10 20 30 40) lastIndexOf:35   startingAt:8 ifAbsent:['none'] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2933
     #(10 20 30 40 10 20 30 40) lastIndexOf:10   startingAt:8 ifAbsent:['none'] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2934
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2935
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2936
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2937
nextIndexOf:anElement from:start to:stop
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2938
    "search the collection for anElement, starting the search at index start,
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2939
     stopping at:stop;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2940
     if found, return the index otherwise return 0.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2941
     The comparison is done using = 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2942
     (i.e. equality test - not identity test)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2943
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2944
    |startIndex "{ Class: SmallInteger }"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2945
     stopIndex  "{ Class: SmallInteger }" |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2946
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2947
    startIndex := start.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2948
    stopIndex :=  stop.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2949
    startIndex to:stop do:[:index |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2950
	anElement = (self at:index) ifTrue:[^ index].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2951
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2952
    ^ 0
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2953
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2954
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2955
     #(10 20 30 40 10 20 30 40) nextIndexOf:40   from:2 to:6  
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2956
     #(10 20 30 40 10 20 30 40) nextIndexOf:40.0 from:2 to:6   
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2957
     #(10 20 30 40 10 20 30 40) nextIndexOf:35   from:2 to:6   
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2958
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2959
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2960
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2961
nextIndexOf:anElement from:start to:stop ifAbsent:exceptionBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2962
    "search the collection for anElement, starting the search at index start
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2963
     and stopping at stop;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2964
     if found, return the index otherwise return the value of the
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2965
     exceptionBlock.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2966
     The comparison is done using = 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2967
     (i.e. equality test - not identity test)."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2968
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2969
    |index|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2970
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2971
    index := self nextIndexOf:anElement from:start to:stop.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2972
    (index == 0) ifTrue:[^ exceptionBlock value].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2973
    ^ index
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2974
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2975
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2976
     #(10 20 30 40 10 20 30 40) nextIndexOf:40   from:2 to:6 ifAbsent:['none'] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2977
     #(10 20 30 40 10 20 30 40) nextIndexOf:40.0 from:2 to:6 ifAbsent:['none'] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2978
     #(10 20 30 40 10 20 30 40) nextIndexOf:35   from:2 to:6 ifAbsent:['none'] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2979
    "
2275
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2980
!
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2981
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2982
prevIndexOf:anElement from:startSearchIndex to:endSearchIndex
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2983
    "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
  2984
     ending at stop, going in reverse direction.
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2985
     If found (within the range), return the index, otherwise return 0.
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2986
     The comparison is done using = 
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2987
     (i.e. equality test - not identity test)."
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2988
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2989
    |startIndex "{ Class: SmallInteger }"
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2990
     stopIndex  "{ Class: SmallInteger }" |
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2991
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2992
    startIndex := startSearchIndex.
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2993
    stopIndex := endSearchIndex max:1.
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2994
    startIndex to:stopIndex by:-1 do:[:index |
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2995
        anElement = (self at:index) ifTrue:[^ index].
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2996
    ].
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2997
    ^ 0
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2998
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  2999
    "
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3000
     #(10 20 30 40 10 20 30 40) prevIndexOf:40   from:7 to:2  
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3001
     #(10 20 30 40 10 20 30 40) prevIndexOf:40.0 from:7 to:2  
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3002
     #(10 20 30 40 10 20 30 40) prevIndexOf:35   from:7 to:5  
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3003
    "
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3004
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3005
    "Modified: 25.1.1997 / 18:19:50 / cg"
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3006
!
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3007
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3008
prevIndexOf:anElement from:start to:stop ifAbsent:exceptionBlock
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3009
    "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
  3010
     and stopping at stop, doing a reverse search;
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3011
     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
  3012
     exceptionBlock.
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3013
     The comparison is done using = 
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3014
     (i.e. equality test - not identity test)."
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3015
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3016
    |index|
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3017
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3018
    index := self prevIndexOf:anElement from:start to:stop.
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3019
    (index == 0) ifTrue:[^ exceptionBlock value].
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3020
    ^ index
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3021
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3022
    "
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3023
     #(10 20 30 40 10 20 30 40) prevIndexOf:40   from:7 to:2 ifAbsent:['none'] 
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3024
     #(10 20 30 40 10 20 30 40) prevIndexOf:40.0 from:7 to:2 ifAbsent:['none'] 
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3025
     #(10 20 30 40 10 20 30 40) prevIndexOf:35   from:7 to:5 ifAbsent:['none'] 
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3026
    "
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3027
882e11d07295 added prevIndexOf:from:to:
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
  3028
    "Modified: 25.1.1997 / 18:18:18 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3029
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3030
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3031
!SequenceableCollection methodsFor:'sorting & reordering'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3032
2881
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3033
randomizedSort
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3034
    "sort the collection inplace. The elements are compared using
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3035
     '<' i.e. they should offer a magnitude-like protocol.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3036
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3037
     This uses the randomized quicksort algorithm, 
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3038
     which has a better worstCase behavior than quickSort
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3039
     (bit worse bestCase & averageCase behavior).
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3040
     See: Knuth or Cormen,Leiserson,Rivest pg. 163"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3041
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3042
    |stop|
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3043
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3044
    stop := self size.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3045
    (stop > 1) ifTrue:[
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3046
        self randomizedQuickSortFrom:1 to:stop sortBlock:[:a :b | a < b] with:nil
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3047
    ]
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3048
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3049
    "Modified: 21.8.1997 / 18:31:21 / cg"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3050
!
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3051
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3052
randomizedSort:sortBlock
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3053
    "sort the collection inplace using the 2-arg block sortBlock
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3054
     for comparison. This allows any sort criteria to be implemented.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3055
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3056
     This uses the randomized quicksort algorithm, 
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3057
     which has a better worstCase behavior than quickSort
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3058
     (bit worse bestCase & averageCase behavior).
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3059
     See: Knuth or Cormen,Leiserson,Rivest pg. 163"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3060
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3061
    |stop|
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3062
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3063
    stop := self size.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3064
    (stop > 1) ifTrue:[
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3065
        self randomizedQuickSortFrom:1 to:stop sortBlock:sortBlock with:nil
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3066
    ]
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3067
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3068
    "Created: 21.8.1997 / 18:16:50 / cg"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3069
    "Modified: 21.8.1997 / 18:31:24 / cg"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3070
!
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3071
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3072
randomizedSort:sortBlock with:aCollection
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3073
    "sort the collection inplace using the 2-arg block sortBlock
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3074
     for comparison. Also reorder the elements in aCollection.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3075
     Use this, when you have a key collection to sort some other collection with.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3076
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3077
     This uses the randomized quicksort algorithm, 
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3078
     which has a better worstCase behavior than quickSort
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3079
     (bit worse bestCase & averageCase behavior).
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3080
     See: Knuth or Cormen,Leiserson,Rivest pg. 163"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3081
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3082
    |stop|
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3083
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3084
    stop := self size.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3085
    (stop > 1) ifTrue:[
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3086
        self randomizedQuickSortFrom:1 to:stop sortBlock:sortBlock with:aCollection
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3087
    ]
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3088
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3089
    "Created: 21.8.1997 / 18:20:53 / cg"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3090
    "Modified: 21.8.1997 / 18:31:27 / cg"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3091
!
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3092
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3093
randomizedSortWith:aCollection
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3094
    "sort the receiver collection inplace, using '<' to compare elements.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3095
     Also, the elements of aCollection are reordered with it.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3096
     Use this, when you have a key collection to sort another collection with.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3097
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3098
     This uses the randomized quicksort algorithm, 
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3099
     which has a better worstCase behavior than quickSort
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3100
     (bit worse bestCase & averageCase behavior).
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3101
     See: Knuth or Cormen,Leiserson,Rivest pg. 163"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3102
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3103
    |stop|
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3104
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3105
    stop := self size.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3106
    (stop > 1) ifTrue:[
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3107
        self randomizedQuickSortFrom:1 to:stop sortBlock:[:a :b | a < b] with:aCollection
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3108
    ]
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3109
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3110
    "Created: 21.8.1997 / 18:22:25 / cg"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3111
    "Modified: 21.8.1997 / 18:31:31 / cg"
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3112
!
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3113
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3114
reverse
2610
a2ed6babbb0f comment
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  3115
    "destructively reverse the order of the elements inplace"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3116
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3117
    |lowIndex "{ Class: SmallInteger }"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3118
     hiIndex  "{ Class: SmallInteger }"
929
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  3119
     t1 t2|
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3120
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3121
    hiIndex := self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3122
    lowIndex := 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3123
    [lowIndex < hiIndex] whileTrue:[
1495
f0226967f2a2 added a Class: Smallinteger hint
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  3124
	t1 := self at:lowIndex.  t2 := self at:hiIndex.
f0226967f2a2 added a Class: Smallinteger hint
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  3125
	self at:lowIndex put:t2.  self at:hiIndex put:t1.
929
674de4c05dcb added findFirst:startingAt: and findLast:startingAt:
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  3126
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3127
	lowIndex := lowIndex + 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3128
	hiIndex := hiIndex - 1
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3129
    ]
1495
f0226967f2a2 added a Class: Smallinteger hint
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  3130
69
4564b6328136 *** empty log message ***
claus
parents: 61
diff changeset
  3131
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3132
     #(4 5 6 7 7) reverse
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3133
     #(1 4 7 10 2 5) asOrderedCollection reverse
69
4564b6328136 *** empty log message ***
claus
parents: 61
diff changeset
  3134
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3135
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3136
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3137
sort
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3138
    "sort the collection inplace. The elements are compared using
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  3139
     '<' i.e. they should offer a magnitude-like protocol.
2881
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3140
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  3141
     The implementation uses the quicksort algorithm, which may not be
2881
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3142
     the best possible for all situations (quickSort has O-square worst
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3143
     case behavior). See also #randomizedSort for a version with better
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3144
     worstCase behavior (but worse average & bestCase behavior)"
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
  3145
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  3146
    |stop|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3147
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  3148
    stop := self size.
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  3149
    (stop > 1) ifTrue:[
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  3150
        self quickSortFrom:1 to:stop
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3151
    ]
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3152
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3153
    "
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3154
     #(1 16 7 98 3 19 4 0) sort
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3155
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3156
     |data|
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3157
     data := Random new next:100000.
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3158
     'random  ' print. (Time millisecondsToRun:[data sort]) printNL.
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3159
     'sorted  ' print. (Time millisecondsToRun:[data sort]) printNL.
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3160
     data reverse. 
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3161
     'reverse ' print. (Time millisecondsToRun:[data sort]) printNL.
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3162
    "
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  3163
2881
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3164
    "Modified: 21.8.1997 / 18:31:52 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3165
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3166
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3167
sort:sortBlock
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3168
    "sort the collection inplace using the 2-arg block sortBlock
2881
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3169
     for comparison. This allows any sort criteria to be implemented.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3170
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3171
     The implementation uses the quicksort algorithm, which may not be
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3172
     the best possible for all situations (quickSort has O-square worst
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3173
     case behavior). See also #randomizedSort: for a version with better
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3174
     worstCase behavior (but worse average & bestCase behavior)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3175
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  3176
    |stop|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3177
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  3178
    stop := self size.
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  3179
    (stop > 1) ifTrue:[
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  3180
        self quickSortFrom:1 to:stop sortBlock:sortBlock
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3181
    ]
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3182
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3183
    "
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  3184
     #(1 16 7 98 3 19 4 0) sort:[:a :b | a < b] 
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  3185
     #(1 16 7 98 3 19 4 0) sort:[:a :b | a > b] 
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  3186
     #(1 -1 16 -16 7 -7 98 -98) sort:[:a :b | a < b] 
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  3187
     #(1 -1 16 -16 7 -7 98 -98) sort:[:a :b | a abs < b abs] 
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3188
    "
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  3189
2881
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3190
    "Modified: 21.8.1997 / 18:32:02 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3191
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3192
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3193
sort:sortBlock with:aCollection
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3194
    "sort the collection inplace using the 2-arg block sortBlock
159
514c749165c3 *** empty log message ***
claus
parents: 118
diff changeset
  3195
     for comparison. Also reorder the elements in aCollection.
2881
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3196
     Use this, when you have a key collection to sort some other collection with.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3197
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3198
     The implementation uses the quicksort algorithm, which may not be
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3199
     the best possible for all situations (quickSort has O-square worst
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3200
     case behavior). See also #randomizedSort: for a version with better
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3201
     worstCase behavior (but worse average & bestCase behavior)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3202
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  3203
    |stop|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3204
32
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  3205
    stop := self size.
ee1a621c696c *** empty log message ***
claus
parents: 13
diff changeset
  3206
    (stop > 1) ifTrue:[
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  3207
        self quickSortFrom:1 to:stop sortBlock:sortBlock with:aCollection
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3208
    ]
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3209
69
4564b6328136 *** empty log message ***
claus
parents: 61
diff changeset
  3210
    "
4564b6328136 *** empty log message ***
claus
parents: 61
diff changeset
  3211
     |c1 c2|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3212
     c1 := #(1 16 7 9).
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3213
     c2 := #('one' 'sixteen' 'seven' 'nine').
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3214
     c1 sort:[:a :b | a > b] with:c2.
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3215
     c1 printNL.
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3216
     c2 printNL
69
4564b6328136 *** empty log message ***
claus
parents: 61
diff changeset
  3217
    "
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  3218
2881
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3219
    "Modified: 21.8.1997 / 18:32:11 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3220
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3221
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3222
sortWith:aCollection
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  3223
    "sort the receiver collection inplace, using '<' to compare elements.
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  3224
     Also, the elements of aCollection are reordered with it.
2881
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3225
     Use this, when you have a key collection to sort another collection with.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3226
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3227
     The implementation uses the quicksort algorithm, which may not be
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3228
     the best possible for all situations (quickSort has O-square worst
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3229
     case behavior). See also #randomizedSort: for a version with better
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3230
     worstCase behavior (but worse average & bestCase behavior)"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3231
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3232
    |stop|
356
claus
parents: 348
diff changeset
  3233
claus
parents: 348
diff changeset
  3234
    stop := self size.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3235
    (stop > 1) ifTrue:[
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  3236
        self quickSortFrom:1 to:stop with:aCollection
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3237
    ]
77
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
  3238
2881
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3239
    "Modified: 21.8.1997 / 18:32:21 / cg"
424
claus
parents: 422
diff changeset
  3240
!
claus
parents: 422
diff changeset
  3241
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3242
topologicalSort:sortBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3243
    "sort the collection inplace using a sloooow sort algorithm.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3244
     This algorithm has O-square runtime behavior and should be used only
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3245
     in special situations.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3246
     It compares all elements, thus can be used when a>b, b>c does NOT imply
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3247
     a>c (for example, to sort classes by inheritance)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3248
2881
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3249
     In all other situations, use #sort; which implements the quicksort algorithm.
77
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
  3250
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3251
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3252
    |smallestIndex "{ Class: SmallInteger }"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3253
     end           "{ Class: SmallInteger }"
1495
f0226967f2a2 added a Class: Smallinteger hint
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  3254
     index2        "{ Class: SmallInteger }"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3255
     smallest thisOne|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3256
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3257
    "this is just a q&d hack - there must be better implementations for this ;-)"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3258
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3259
    end := self size.
862
007dccfb6cb0 fix topologicalSort:
Stefan Vogel <sv@exept.de>
parents: 628
diff changeset
  3260
    1 to:end-1 do:[:index |
2881
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3261
        smallest := self at:index.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3262
        smallestIndex := index.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3263
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3264
        index2 := index + 1.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3265
        [
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3266
            thisOne := self at:index2.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3267
            (index2 ~~ smallestIndex 
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3268
            and:[sortBlock value:thisOne value:smallest]) ifTrue:[
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3269
                smallestIndex := index2.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3270
                smallest := thisOne.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3271
                index2 := index + 1.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3272
            ] ifFalse:[
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3273
                index2 := index2 + 1..
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3274
            ].
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3275
        ] doWhile:[index2 <= end].
862
007dccfb6cb0 fix topologicalSort:
Stefan Vogel <sv@exept.de>
parents: 628
diff changeset
  3276
007dccfb6cb0 fix topologicalSort:
Stefan Vogel <sv@exept.de>
parents: 628
diff changeset
  3277
"/        (index + 1) to:end do:[:index2 |
007dccfb6cb0 fix topologicalSort:
Stefan Vogel <sv@exept.de>
parents: 628
diff changeset
  3278
"/            thisOne := self at:index2.
007dccfb6cb0 fix topologicalSort:
Stefan Vogel <sv@exept.de>
parents: 628
diff changeset
  3279
"/            (sortBlock value:thisOne value:smallest) ifTrue:[
007dccfb6cb0 fix topologicalSort:
Stefan Vogel <sv@exept.de>
parents: 628
diff changeset
  3280
"/                smallestIndex := index2.
007dccfb6cb0 fix topologicalSort:
Stefan Vogel <sv@exept.de>
parents: 628
diff changeset
  3281
"/                smallest := thisOne
007dccfb6cb0 fix topologicalSort:
Stefan Vogel <sv@exept.de>
parents: 628
diff changeset
  3282
"/            ].
007dccfb6cb0 fix topologicalSort:
Stefan Vogel <sv@exept.de>
parents: 628
diff changeset
  3283
"/        ].
1495
f0226967f2a2 added a Class: Smallinteger hint
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  3284
2881
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3285
        (smallestIndex ~~ index) ifTrue:[
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3286
            thisOne := self at:index.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3287
            self at:index put:smallest.
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3288
            self at:smallestIndex put:thisOne
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3289
        ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3290
    ]
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
  3291
77
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
  3292
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3293
     #(1 16 7 98 3 19 4 0) topologicalSort:[:a :b | a < b]   
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3294
     #(1 16 7 98 3 19 4 0) sort:[:a :b | a < b]              
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3295
     Smalltalk allClasses asArray topologicalSort:[:a :b | b isSubclassOf:a] 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3296
     Smalltalk allClasses asArray sort:[:a :b | b isSubclassOf:a] 
77
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
  3297
    "
2881
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3298
452f9154d0dc comments; added #randomizedQuickSort.
Claus Gittinger <cg@exept.de>
parents: 2860
diff changeset
  3299
    "Modified: 21.8.1997 / 18:30:49 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3300
! !
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3301
2069
f6183117f922 comments
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  3302
!SequenceableCollection class methodsFor:'documentation'!
628
7aa563e4c64a version at the end
Claus Gittinger <cg@exept.de>
parents: 602
diff changeset
  3303
7aa563e4c64a version at the end
Claus Gittinger <cg@exept.de>
parents: 602
diff changeset
  3304
version
2980
a662ffcfad1d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2927
diff changeset
  3305
    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.85 1997-09-24 02:50:39 cg Exp $'
628
7aa563e4c64a version at the end
Claus Gittinger <cg@exept.de>
parents: 602
diff changeset
  3306
! !