Collection.st
author Claus Gittinger <cg@exept.de>
Tue, 28 Feb 2012 21:22:53 +0100
changeset 14027 a23e237f2fad
parent 14022 28ecd3e2d8c9
child 14028 0a7d1b52002c
permissions -rw-r--r--
added: #collect:thenDo: #do:without: #reduce: changed: #reduceLeft:
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
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
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
"
5359
396b77b6f1d2 added #isSortedCollection, #isSortedBy:
Claus Gittinger <cg@exept.de>
parents: 5268
diff changeset
    12
"{ Package: 'stx:libbasic' }"
396b77b6f1d2 added #isSortedCollection, #isSortedBy:
Claus Gittinger <cg@exept.de>
parents: 5268
diff changeset
    13
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    14
Object subclass:#Collection
11331
443e9f4efd2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11315
diff changeset
    15
	instanceVariableNames:''
443e9f4efd2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11315
diff changeset
    16
	classVariableNames:'InvalidKeySignal EmptyCollectionSignal ValueNotFoundSignal
443e9f4efd2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11315
diff changeset
    17
		NotEnoughElementsSignal RecursiveCollectionStoreStringSignal'
443e9f4efd2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11315
diff changeset
    18
	poolDictionaries:''
443e9f4efd2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11315
diff changeset
    19
	category:'Collections-Abstract'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    20
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    21
2097
7db449048537 commentary
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
    22
!Collection class methodsFor:'documentation'!
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    23
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    24
copyright
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    25
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    26
 COPYRIGHT (c) 1989 by Claus Gittinger
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
    27
              All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    28
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    29
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    30
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    32
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    33
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    34
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    35
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    36
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    37
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    38
documentation
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    39
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    40
    Abstract superclass for all collections.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    41
    This abstract class provides functionality common to all collections,
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    42
    without knowing how the concrete class implements things. Thus, all
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    43
    methods found here depend on some basic mechanisms to be defined in the
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    44
    concrete class. 
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    45
    These basic methods are usually defined as #subclassResponsibility here.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    46
    Some methods are also redefined for better performance.
1289
3abde2c376de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
    47
1325
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
    48
    Subclasses should at least implement:
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
    49
        do:     - enumerate elements
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
    50
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
    51
    they should implement one of the following set of access messages:
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
    52
    keyed collections:
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
    53
        at:ifAbsent:            - fetching an element
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
    54
        at:                     - fetching an element
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
    55
        at:put:                 - storing an element
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
    56
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
    57
    unkeyed collections:
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
    58
        add:                    - add an element
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
    59
        remove:ifAbsent:        - remove an element
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
    60
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
    61
1289
3abde2c376de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
    62
    [author:]
3abde2c376de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
    63
        Claus Gittinger
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    64
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    65
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    66
2097
7db449048537 commentary
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
    67
!Collection class methodsFor:'initialization'!
10
claus
parents: 5
diff changeset
    68
claus
parents: 5
diff changeset
    69
initialize
claus
parents: 5
diff changeset
    70
    "setup the signal"
claus
parents: 5
diff changeset
    71
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 44
diff changeset
    72
    InvalidKeySignal isNil ifTrue:[
7092
630807cd320f Convert Object>>errorSignal -> Error
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
    73
        InvalidKeySignal := Error newSignalMayProceed:true.
3102
2bc81588db6c sigs are children of NotFoundSignal (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
    74
        InvalidKeySignal nameClass:self message:#invalidKeySignal.
2bc81588db6c sigs are children of NotFoundSignal (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
    75
        InvalidKeySignal notifierString:'invalid key:'.
345
claus
parents: 342
diff changeset
    76
8510
af60b80bf50e refer to exception classes instead of signal class vars
Stefan Vogel <sv@exept.de>
parents: 8395
diff changeset
    77
        ValueNotFoundSignal := NotFoundError newSignalMayProceed:true.
3102
2bc81588db6c sigs are children of NotFoundSignal (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
    78
        ValueNotFoundSignal nameClass:self message:#valueNotFoundSignal.
2bc81588db6c sigs are children of NotFoundSignal (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
    79
        ValueNotFoundSignal notifierString:'value not found:'.
155
edd7fc34e104 *** empty log message ***
claus
parents: 140
diff changeset
    80
8510
af60b80bf50e refer to exception classes instead of signal class vars
Stefan Vogel <sv@exept.de>
parents: 8395
diff changeset
    81
        NotEnoughElementsSignal := NotFoundError newSignalMayProceed:true.
3102
2bc81588db6c sigs are children of NotFoundSignal (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
    82
        NotEnoughElementsSignal nameClass:self message:#notEnoughElementsSignal.
2bc81588db6c sigs are children of NotFoundSignal (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
    83
        NotEnoughElementsSignal notifierString:'not enough elements in collection'.
348
claus
parents: 345
diff changeset
    84
3102
2bc81588db6c sigs are children of NotFoundSignal (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
    85
        EmptyCollectionSignal := NotEnoughElementsSignal newSignalMayProceed:true.
2bc81588db6c sigs are children of NotFoundSignal (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
    86
        EmptyCollectionSignal nameClass:self message:#emptyCollectionSignal.
2bc81588db6c sigs are children of NotFoundSignal (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
    87
        EmptyCollectionSignal notifierString:'operation not allowed for empty collections'.
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 44
diff changeset
    88
    ]
3102
2bc81588db6c sigs are children of NotFoundSignal (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
    89
2bc81588db6c sigs are children of NotFoundSignal (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
    90
    "Modified: / 8.11.1997 / 19:18:17 / cg"
10
claus
parents: 5
diff changeset
    91
! !
claus
parents: 5
diff changeset
    92
2097
7db449048537 commentary
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
    93
!Collection class methodsFor:'instance creation'!
155
edd7fc34e104 *** empty log message ***
claus
parents: 140
diff changeset
    94
13049
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
    95
combiningEach:collection1 withEach:collection2 using:aTwoArgBlock
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
    96
    "evaluate aTwoArgBlock for each combination of elements from collection1
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
    97
     and collection2 and return an instance of the receiver containing all those elements"
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
    98
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
    99
    |newColl idx useIndex newEl|
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   100
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   101
    newColl := self new:(collection1 size * collection2 size).
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   102
    useIndex := newColl isFixedSize.
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   103
    idx := 1.
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   104
    collection1 do:[:e1 |
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   105
        collection2 do:[:e2 |
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   106
            newEl := aTwoArgBlock value:e1 value:e2.
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   107
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   108
            useIndex ifTrue:[
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   109
                newColl at:idx put:(aTwoArgBlock value:e1 value:e2).
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   110
                idx := idx + 1.
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   111
            ] ifFalse:[
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   112
                newColl add:(aTwoArgBlock value:e1 value:e2)
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   113
            ].
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   114
        ]
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   115
    ].
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   116
    ^ newColl
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   117
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   118
    "
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   119
     Set combiningEach:#(1 2 3 4 5) withEach:(10 to:100 by:10) using:[:a :b | a * b] 
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   120
     Set combiningEach:#(1 2 3 4 5) withEach:#(1 2 3 4 5) using:[:a :b | a * b] 
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   121
    "
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   122
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   123
    "Created: / 25-08-2010 / 17:21:47 / cg"
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   124
!
5fb3970c8dd9 added: #combiningEach:withEach:using:
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
   125
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   126
new:size withAll:element
5626
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5619
diff changeset
   127
    "return a new Collection of size, where all elements are
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   128
     initialized to element"
348
claus
parents: 345
diff changeset
   129
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   130
    |newCollection|
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
   131
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   132
    newCollection := self new:size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   133
    size timesRepeat:[newCollection add:element]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   134
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   135
5626
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5619
diff changeset
   136
newFrom:aCollection 
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5619
diff changeset
   137
    "Return an instance of me containing the same elements as aCollection."
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5619
diff changeset
   138
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5619
diff changeset
   139
    ^ self withAll:aCollection
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5619
diff changeset
   140
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5619
diff changeset
   141
    "
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5619
diff changeset
   142
     Bag newFrom:#(1 2 3 4 4 5 6 7 7 7 )  
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5619
diff changeset
   143
     Set newFrom:#(1 2 3 4 4 5 6 7 7 7 ) 
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5619
diff changeset
   144
    "
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5619
diff changeset
   145
!
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5619
diff changeset
   146
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   147
with:anObject
a27a279701f8 Initial revision
claus
parents:
diff changeset
   148
    "return a new Collection with one element:anObject"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   149
a27a279701f8 Initial revision
claus
parents:
diff changeset
   150
    |newCollection|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   151
a27a279701f8 Initial revision
claus
parents:
diff changeset
   152
    newCollection := self new.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   153
    newCollection add:anObject.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   154
    ^ newCollection
a27a279701f8 Initial revision
claus
parents:
diff changeset
   155
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   156
a27a279701f8 Initial revision
claus
parents:
diff changeset
   157
with:firstObject with:secondObject
a27a279701f8 Initial revision
claus
parents:
diff changeset
   158
    "return a new Collection with two elements:firstObject and secondObject"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   159
a27a279701f8 Initial revision
claus
parents:
diff changeset
   160
    |newCollection|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   161
a27a279701f8 Initial revision
claus
parents:
diff changeset
   162
    newCollection := self new.
1112
0d8dd47d386a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   163
    newCollection add:firstObject; add:secondObject.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   164
    ^ newCollection
a27a279701f8 Initial revision
claus
parents:
diff changeset
   165
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   166
a27a279701f8 Initial revision
claus
parents:
diff changeset
   167
with:firstObject with:secondObject with:thirdObject
a27a279701f8 Initial revision
claus
parents:
diff changeset
   168
    "return a new Collection with three elements"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   169
a27a279701f8 Initial revision
claus
parents:
diff changeset
   170
    |newCollection|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   171
a27a279701f8 Initial revision
claus
parents:
diff changeset
   172
    newCollection := self new.
1112
0d8dd47d386a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   173
    newCollection add:firstObject; add:secondObject; add:thirdObject.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   174
    ^ newCollection
a27a279701f8 Initial revision
claus
parents:
diff changeset
   175
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   176
a27a279701f8 Initial revision
claus
parents:
diff changeset
   177
with:firstObject with:secondObject with:thirdObject with:fourthObject
a27a279701f8 Initial revision
claus
parents:
diff changeset
   178
    "return a new Collection with four elements"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   179
a27a279701f8 Initial revision
claus
parents:
diff changeset
   180
    |newCollection|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   181
a27a279701f8 Initial revision
claus
parents:
diff changeset
   182
    newCollection := self new.
1112
0d8dd47d386a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   183
    newCollection add:firstObject; add:secondObject; add:thirdObject; add:fourthObject.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   184
    ^ newCollection
a27a279701f8 Initial revision
claus
parents:
diff changeset
   185
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   186
2225
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   187
with:a1 with:a2 with:a3 with:a4 with:a5
345
claus
parents: 342
diff changeset
   188
    "return a new Collection with five elements"
claus
parents: 342
diff changeset
   189
claus
parents: 342
diff changeset
   190
    |newCollection|
claus
parents: 342
diff changeset
   191
claus
parents: 342
diff changeset
   192
    newCollection := self new.
2225
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   193
    newCollection add:a1; add:a2; add:a3; add:a4; add:a5.
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   194
    ^ newCollection
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   195
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   196
    "Modified: 22.1.1997 / 19:34:01 / cg"
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   197
!
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   198
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   199
with:a1 with:a2 with:a3 with:a4 with:a5 with:a6
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   200
    "return a new Collection with size elements"
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   201
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   202
    |newCollection|
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   203
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   204
    newCollection := self new.
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   205
    newCollection add:a1; add:a2; add:a3; add:a4; add:a5; add:a6.
345
claus
parents: 342
diff changeset
   206
    ^ newCollection
2225
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   207
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   208
    "Created: 22.1.1997 / 19:34:14 / cg"
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   209
!
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   210
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   211
with:a1 with:a2 with:a3 with:a4 with:a5 with:a6 with:a7
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   212
    "return a new Collection with seven elements"
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   213
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   214
    |newCollection|
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   215
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   216
    newCollection := self new.
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   217
    newCollection add:a1; add:a2; add:a3; add:a4; add:a5; add:a6; add:a7.
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   218
    ^ newCollection
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   219
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   220
    "Created: 22.1.1997 / 19:34:24 / cg"
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   221
!
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   222
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   223
with:a1 with:a2 with:a3 with:a4 with:a5 with:a6 with:a7 with:a8
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   224
    "return a new Collection with eight elements"
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   225
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   226
    |newCollection|
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   227
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   228
    newCollection := self new.
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   229
    newCollection add:a1; add:a2; add:a3; add:a4; add:a5; add:a6; add:a7; add:a8.
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   230
    ^ newCollection
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   231
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2167
diff changeset
   232
    "Created: 22.1.1997 / 19:34:34 / cg"
345
claus
parents: 342
diff changeset
   233
!
claus
parents: 342
diff changeset
   234
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   235
withAll:aCollection
a27a279701f8 Initial revision
claus
parents:
diff changeset
   236
    "return a new Collection with all elements taken from the argument,
a27a279701f8 Initial revision
claus
parents:
diff changeset
   237
     aCollection"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   238
a27a279701f8 Initial revision
claus
parents:
diff changeset
   239
    |newCollection|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   240
a27a279701f8 Initial revision
claus
parents:
diff changeset
   241
    newCollection := self new.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   242
    newCollection addAll:aCollection.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   243
    ^newCollection
9159
05d0861b938b +ofSize:
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   244
!
05d0861b938b +ofSize:
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   245
05d0861b938b +ofSize:
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   246
withSize:n
05d0861b938b +ofSize:
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   247
    "return a new collection which really provides space for n elements.
05d0861b938b +ofSize:
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   248
     Kludges around the stupid definition of OrderedCollection>>new:"
05d0861b938b +ofSize:
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   249
05d0861b938b +ofSize:
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   250
    ^ self new:n
05d0861b938b +ofSize:
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   251
! !
05d0861b938b +ofSize:
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   252
05d0861b938b +ofSize:
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   253
!Collection class methodsFor:'Compatibility-Squeak'!
05d0861b938b +ofSize:
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   254
05d0861b938b +ofSize:
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   255
ofSize:n
05d0861b938b +ofSize:
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   256
    "return a new collection which really provides space for n elements.
05d0861b938b +ofSize:
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   257
     Kludges around the stupid definition of OrderedCollection>>new:"
05d0861b938b +ofSize:
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   258
05d0861b938b +ofSize:
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   259
    ^ self withSize:n
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   260
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   261
13678
4a1303f1bcc9 added: #associationsDo:
Claus Gittinger <cg@exept.de>
parents: 13608
diff changeset
   262
2097
7db449048537 commentary
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
   263
!Collection class methodsFor:'Signal constants'!
10
claus
parents: 5
diff changeset
   264
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   265
emptyCollectionSignal
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   266
    "return the signal used to report non-allowed operation on empty collections"
345
claus
parents: 342
diff changeset
   267
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   268
    ^ EmptyCollectionSignal
308
f04744ef7b5d *** empty log message ***
claus
parents: 302
diff changeset
   269
!
f04744ef7b5d *** empty log message ***
claus
parents: 302
diff changeset
   270
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   271
invalidKeySignal
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   272
    "return the signal used to report bad key usage"
308
f04744ef7b5d *** empty log message ***
claus
parents: 302
diff changeset
   273
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   274
    ^ InvalidKeySignal
201
1deff0d47f37 changed copyEmpty scheme
claus
parents: 169
diff changeset
   275
!
1deff0d47f37 changed copyEmpty scheme
claus
parents: 169
diff changeset
   276
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   277
notEnoughElementsSignal
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   278
    "return the signal used to report attempts for an operation, for which
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   279
     there are not enough elements in the collection"
249
claus
parents: 244
diff changeset
   280
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   281
    ^ NotEnoughElementsSignal
404
claus
parents: 384
diff changeset
   282
!
claus
parents: 384
diff changeset
   283
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   284
valueNotFoundSignal
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   285
    "return the signal used to report a nonexisting element."
404
claus
parents: 384
diff changeset
   286
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   287
    ^ ValueNotFoundSignal
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   288
! !
404
claus
parents: 384
diff changeset
   289
12090
4f63adc2f14d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12008
diff changeset
   290
!Collection class methodsFor:'misc ui support'!
4f63adc2f14d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12008
diff changeset
   291
4f63adc2f14d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12008
diff changeset
   292
iconInBrowserSymbol
4f63adc2f14d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12008
diff changeset
   293
    <resource: #programImage>
4f63adc2f14d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12008
diff changeset
   294
4f63adc2f14d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12008
diff changeset
   295
    ^ #containerClassBrowserIcon
4f63adc2f14d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12008
diff changeset
   296
! !
4f63adc2f14d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12008
diff changeset
   297
2097
7db449048537 commentary
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
   298
!Collection class methodsFor:'queries'!
404
claus
parents: 384
diff changeset
   299
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   300
growIsCheap
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   301
    "return true, if this collection can easily grow
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   302
     (i.e. without a need for become:).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   303
     Returns true here; this method is redefined in fix-size
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   304
     collections"
404
claus
parents: 384
diff changeset
   305
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   306
    ^ true
8893
99996b25482e +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8863
diff changeset
   307
!
99996b25482e +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8863
diff changeset
   308
99996b25482e +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8863
diff changeset
   309
isAbstract
11231
09a10a57b0d8 comment
Claus Gittinger <cg@exept.de>
parents: 10811
diff changeset
   310
    "Return if this class is an abstract class.
09a10a57b0d8 comment
Claus Gittinger <cg@exept.de>
parents: 10811
diff changeset
   311
     True is returned for Collection here; false for subclasses.
09a10a57b0d8 comment
Claus Gittinger <cg@exept.de>
parents: 10811
diff changeset
   312
     Abstract subclasses must redefine again."
09a10a57b0d8 comment
Claus Gittinger <cg@exept.de>
parents: 10811
diff changeset
   313
8893
99996b25482e +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8863
diff changeset
   314
    ^ self == Collection
257
bc569c7f4ba5 *** empty log message ***
claus
parents: 249
diff changeset
   315
! !
bc569c7f4ba5 *** empty log message ***
claus
parents: 249
diff changeset
   316
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7169
diff changeset
   317
!Collection methodsFor:'Compatibility-Dolphin'!
6411
199e6d88c562 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6182
diff changeset
   318
199e6d88c562 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6182
diff changeset
   319
identityIncludes:anObject
7807
da43f0f7237e comments
Claus Gittinger <cg@exept.de>
parents: 7752
diff changeset
   320
    "return true, if the argument, anObject is in the collection.
da43f0f7237e comments
Claus Gittinger <cg@exept.de>
parents: 7752
diff changeset
   321
     Same as #includesIdentical for Dolphin compatibility."
da43f0f7237e comments
Claus Gittinger <cg@exept.de>
parents: 7752
diff changeset
   322
6411
199e6d88c562 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6182
diff changeset
   323
    ^ self includesIdentical:anObject.
6869
97508a763193 +includesAnyOf:
Claus Gittinger <cg@exept.de>
parents: 6867
diff changeset
   324
!
97508a763193 +includesAnyOf:
Claus Gittinger <cg@exept.de>
parents: 6867
diff changeset
   325
97508a763193 +includesAnyOf:
Claus Gittinger <cg@exept.de>
parents: 6867
diff changeset
   326
includesAnyOf:aCollection
97508a763193 +includesAnyOf:
Claus Gittinger <cg@exept.de>
parents: 6867
diff changeset
   327
    "same as #includesAny for Dolphin compatibility."
97508a763193 +includesAnyOf:
Claus Gittinger <cg@exept.de>
parents: 6867
diff changeset
   328
97508a763193 +includesAnyOf:
Claus Gittinger <cg@exept.de>
parents: 6867
diff changeset
   329
    ^ self includesAny:aCollection
97508a763193 +includesAnyOf:
Claus Gittinger <cg@exept.de>
parents: 6867
diff changeset
   330
97508a763193 +includesAnyOf:
Claus Gittinger <cg@exept.de>
parents: 6867
diff changeset
   331
    "
97508a763193 +includesAnyOf:
Claus Gittinger <cg@exept.de>
parents: 6867
diff changeset
   332
     #(1 2 3 4 5 6 7) includesAny:#(1 2 3)
97508a763193 +includesAnyOf:
Claus Gittinger <cg@exept.de>
parents: 6867
diff changeset
   333
     #('hello' 'there' 'world') includesAny:#('hello' 'world')
97508a763193 +includesAnyOf:
Claus Gittinger <cg@exept.de>
parents: 6867
diff changeset
   334
     #(1 2 3 4 5 6 7) includesAny:#(7 8 9)
97508a763193 +includesAnyOf:
Claus Gittinger <cg@exept.de>
parents: 6867
diff changeset
   335
     #(1 2 3 4 5 6 7) includesAny:#(8 9 10)
97508a763193 +includesAnyOf:
Claus Gittinger <cg@exept.de>
parents: 6867
diff changeset
   336
    "
12430
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
   337
!
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
   338
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
   339
symmetricDifference:aCollection
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
   340
    "return a new set containing all elements, 
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
   341
     which are contained in either the receiver or aCollection, but not in both.
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
   342
     Same as xor: - for compatibility"
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
   343
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
   344
    ^ self xor:aCollection
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
   345
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
   346
    "
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
   347
     |c1 c2|
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
   348
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
   349
     c1 := #( foo bar baz baloo ).
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
   350
     c2 := #( foe bar banana baloo ).
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
   351
     c1 symmetricDifference:c2.         
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
   352
     self assert:(c1 symmetricDifference:c2) asSet = (c2 symmetricDifference:c1) asSet
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
   353
    "
6411
199e6d88c562 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6182
diff changeset
   354
! !
199e6d88c562 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6182
diff changeset
   355
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7169
diff changeset
   356
!Collection methodsFor:'Compatibility-Squeak'!
5752
66031c1d493a added #withIndexDo: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5651
diff changeset
   357
13699
478de3b32a97 added: #,
Claus Gittinger <cg@exept.de>
parents: 13698
diff changeset
   358
, aCollection
478de3b32a97 added: #,
Claus Gittinger <cg@exept.de>
parents: 13698
diff changeset
   359
    ^ self copy addAll: aCollection; yourself
478de3b32a97 added: #,
Claus Gittinger <cg@exept.de>
parents: 13698
diff changeset
   360
478de3b32a97 added: #,
Claus Gittinger <cg@exept.de>
parents: 13698
diff changeset
   361
    "Created: / 14-09-2011 / 16:32:06 / cg"
478de3b32a97 added: #,
Claus Gittinger <cg@exept.de>
parents: 13698
diff changeset
   362
!
478de3b32a97 added: #,
Claus Gittinger <cg@exept.de>
parents: 13698
diff changeset
   363
9354
77a20cb7f9b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9353
diff changeset
   364
addIfNotPresent:anObject
7011
4d7910fcaa7e add methods for squeak compatibility
penk
parents: 6966
diff changeset
   365
    "Include anObject as one of the receiver's elements, but only if there
4d7910fcaa7e add methods for squeak compatibility
penk
parents: 6966
diff changeset
   366
    is no such element already. Anwser anObject."
4d7910fcaa7e add methods for squeak compatibility
penk
parents: 6966
diff changeset
   367
4d7910fcaa7e add methods for squeak compatibility
penk
parents: 6966
diff changeset
   368
    (self includes: anObject) ifFalse: [self add: anObject].
4d7910fcaa7e add methods for squeak compatibility
penk
parents: 6966
diff changeset
   369
    ^ anObject
4d7910fcaa7e add methods for squeak compatibility
penk
parents: 6966
diff changeset
   370
!
4d7910fcaa7e add methods for squeak compatibility
penk
parents: 6966
diff changeset
   371
6149
06c874ff7f78 some more (for squeak)
james
parents: 6135
diff changeset
   372
anyOne
8858
a35d6c7eeee0 comments
Claus Gittinger <cg@exept.de>
parents: 8833
diff changeset
   373
    "return any element from the collection.
a35d6c7eeee0 comments
Claus Gittinger <cg@exept.de>
parents: 8833
diff changeset
   374
     Report an error if there is none.
6149
06c874ff7f78 some more (for squeak)
james
parents: 6135
diff changeset
   375
     Same as #anElement - for Squeak compatibility"
06c874ff7f78 some more (for squeak)
james
parents: 6135
diff changeset
   376
06c874ff7f78 some more (for squeak)
james
parents: 6135
diff changeset
   377
    ^ self anElement
06c874ff7f78 some more (for squeak)
james
parents: 6135
diff changeset
   378
!
06c874ff7f78 some more (for squeak)
james
parents: 6135
diff changeset
   379
13678
4a1303f1bcc9 added: #associationsDo:
Claus Gittinger <cg@exept.de>
parents: 13608
diff changeset
   380
associationsDo: aBlock
4a1303f1bcc9 added: #associationsDo:
Claus Gittinger <cg@exept.de>
parents: 13608
diff changeset
   381
    "cg: I think this is bad, but - well..."
4a1303f1bcc9 added: #associationsDo:
Claus Gittinger <cg@exept.de>
parents: 13608
diff changeset
   382
4a1303f1bcc9 added: #associationsDo:
Claus Gittinger <cg@exept.de>
parents: 13608
diff changeset
   383
    self do: aBlock
4a1303f1bcc9 added: #associationsDo:
Claus Gittinger <cg@exept.de>
parents: 13608
diff changeset
   384
4a1303f1bcc9 added: #associationsDo:
Claus Gittinger <cg@exept.de>
parents: 13608
diff changeset
   385
    "Created: / 12-09-2011 / 09:21:58 / cg"
4a1303f1bcc9 added: #associationsDo:
Claus Gittinger <cg@exept.de>
parents: 13608
diff changeset
   386
!
4a1303f1bcc9 added: #associationsDo:
Claus Gittinger <cg@exept.de>
parents: 13608
diff changeset
   387
12249
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
   388
difference: aCollection
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
   389
    "Answer the set-theoretic difference of two collections."
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
   390
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
   391
    ^ self reject:[:each | aCollection includes: each]
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
   392
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
   393
    "
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
   394
     #(0 2 4 6 8) difference:#(2 4)   
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
   395
    "
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
   396
!
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
   397
12345
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   398
gather:aBlock
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   399
    "return an Array,
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   400
     containing all elements as returned from applying aBlock to each element if the receiver,
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   401
     where the block returns a collection of to-be-added elements.
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   402
     This could also be called: collectAllAsArray:"
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   403
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   404
    ^ self gather:aBlock as:Array
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   405
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   406
    "
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   407
     (Set withAll:#(10 20 30 10 20 40)) gather:[:el | Array with:el with:el * 2]
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   408
    "
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   409
!
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   410
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   411
gather:aBlock as:aClass
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   412
    "return an instance of the collection-class aClass,
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   413
     containing all elements as returned from applying aBlock to each element if the receiver.
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   414
     where the block returns a collection of to-be-added elements.
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   415
     This could also be called: collectAll:as:"
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   416
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   417
    ^ aClass streamContents:[:s |
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   418
        self do: [:ea | s nextPutAll: (aBlock value: ea)]
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   419
    ]
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   420
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   421
    "
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   422
     (Set withAll:#(10 20 30 10 20 40)) gather:[:el | Array with:el with:el * 2] as:OrderedCollection
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   423
     (Set withAll:#(10 20 30 10 20 40)) collectAll:[:el | Array with:el with:el * 2]
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   424
    "
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   425
!
Claus Gittinger <cg@exept.de>
parents: 12292
diff changeset
   426
9354
77a20cb7f9b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9353
diff changeset
   427
groupBy:keyBlock having:selectBlock 
12593
664991bb352e comment/format in: #groupBy:having:
Claus Gittinger <cg@exept.de>
parents: 12430
diff changeset
   428
    "Like in SQL operation - Split the receiver's contents into collections of 
9354
77a20cb7f9b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9353
diff changeset
   429
     elements for which keyBlock returns the same results, and return those 
77a20cb7f9b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9353
diff changeset
   430
     collections allowed by selectBlock. "
77a20cb7f9b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9353
diff changeset
   431
9319
ea1a2664d479 *** empty log message ***
Michael Beyl <mb@exept.de>
parents: 9315
diff changeset
   432
    |result key|
12593
664991bb352e comment/format in: #groupBy:having:
Claus Gittinger <cg@exept.de>
parents: 12430
diff changeset
   433
9319
ea1a2664d479 *** empty log message ***
Michael Beyl <mb@exept.de>
parents: 9315
diff changeset
   434
    result := OrderedDictionary new.
12593
664991bb352e comment/format in: #groupBy:having:
Claus Gittinger <cg@exept.de>
parents: 12430
diff changeset
   435
    self do:[:e | 
664991bb352e comment/format in: #groupBy:having:
Claus Gittinger <cg@exept.de>
parents: 12430
diff changeset
   436
        key := keyBlock value: e.
664991bb352e comment/format in: #groupBy:having:
Claus Gittinger <cg@exept.de>
parents: 12430
diff changeset
   437
        (result includesKey: key) ifFalse: [
664991bb352e comment/format in: #groupBy:having:
Claus Gittinger <cg@exept.de>
parents: 12430
diff changeset
   438
            result at: key put: OrderedCollection new
664991bb352e comment/format in: #groupBy:having:
Claus Gittinger <cg@exept.de>
parents: 12430
diff changeset
   439
        ].
664991bb352e comment/format in: #groupBy:having:
Claus Gittinger <cg@exept.de>
parents: 12430
diff changeset
   440
        (result at: key) add: e
664991bb352e comment/format in: #groupBy:having:
Claus Gittinger <cg@exept.de>
parents: 12430
diff changeset
   441
    ].
9319
ea1a2664d479 *** empty log message ***
Michael Beyl <mb@exept.de>
parents: 9315
diff changeset
   442
    ^ result := result select: selectBlock
ea1a2664d479 *** empty log message ***
Michael Beyl <mb@exept.de>
parents: 9315
diff changeset
   443
9354
77a20cb7f9b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9353
diff changeset
   444
    "
77a20cb7f9b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9353
diff changeset
   445
     #(1 2 3 4 5 6 7 8 9) groupBy:[:e | e odd] having:[:a |true]  
77a20cb7f9b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9353
diff changeset
   446
    "
9319
ea1a2664d479 *** empty log message ***
Michael Beyl <mb@exept.de>
parents: 9315
diff changeset
   447
!
ea1a2664d479 *** empty log message ***
Michael Beyl <mb@exept.de>
parents: 9315
diff changeset
   448
9065
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   449
ifEmpty:ifEmptyValue ifNotEmpty:ifNotEmptyValue
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   450
    |action|
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   451
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   452
    action := self isEmpty ifTrue:[ ifEmptyValue ] ifFalse:[ ifNotEmptyValue ].
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   453
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   454
    action isBlock ifTrue:[
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   455
        action numArgs == 1 ifTrue:[
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   456
            ^ action value:self 
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   457
        ]
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   458
    ].
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   459
    ^ action value 
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   460
!
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   461
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   462
ifEmpty:ifEmptyValue ifNotEmptyDo:ifNotEmptyValue
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   463
    ^ self ifEmpty:ifEmptyValue ifNotEmpty:ifNotEmptyValue
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   464
!
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   465
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   466
ifEmptyDo:ifEmptyValue ifNotEmpty:ifNotEmptyValue
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   467
    ^ self ifEmpty:ifEmptyValue ifNotEmpty:ifNotEmptyValue
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   468
!
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   469
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   470
ifNotEmpty:ifNotEmptyValue
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   471
    ^ self ifEmpty:nil ifNotEmpty:ifNotEmptyValue
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   472
!
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   473
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   474
ifNotEmptyDo:ifNotEmptyValue
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   475
    ^ self ifEmpty:nil ifNotEmpty:ifNotEmptyValue
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   476
!
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   477
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   478
ifNotEmptyDo:ifNotEmptyValue ifEmpty:ifEmptyValue
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   479
    ^ self ifEmpty:ifEmptyValue ifNotEmpty:ifNotEmptyValue
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   480
!
f77c6f153df7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9005
diff changeset
   481
11280
6ff07eddb2c6 squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 11231
diff changeset
   482
intersection:aCollection
6ff07eddb2c6 squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 11231
diff changeset
   483
    ^ self intersect:aCollection
6ff07eddb2c6 squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 11231
diff changeset
   484
6ff07eddb2c6 squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 11231
diff changeset
   485
    "Created: / 22-10-2008 / 21:29:27 / cg"
6ff07eddb2c6 squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 11231
diff changeset
   486
!
6ff07eddb2c6 squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 11231
diff changeset
   487
5752
66031c1d493a added #withIndexDo: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5651
diff changeset
   488
withIndexDo:aTwoArgBlock 
66031c1d493a added #withIndexDo: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5651
diff changeset
   489
    "evaluate the argument, aBlock for every element in the collection,
66031c1d493a added #withIndexDo: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5651
diff changeset
   490
     passing both element and index as arguments."
66031c1d493a added #withIndexDo: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5651
diff changeset
   491
66031c1d493a added #withIndexDo: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5651
diff changeset
   492
    ^ self keysAndValuesDo:[:key :index |
66031c1d493a added #withIndexDo: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5651
diff changeset
   493
        aTwoArgBlock value:index value:key
66031c1d493a added #withIndexDo: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5651
diff changeset
   494
    ].
66031c1d493a added #withIndexDo: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5651
diff changeset
   495
! !
66031c1d493a added #withIndexDo: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5651
diff changeset
   496
13678
4a1303f1bcc9 added: #associationsDo:
Claus Gittinger <cg@exept.de>
parents: 13608
diff changeset
   497
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   498
!Collection methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   499
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   500
anElement
6966
032c3b210bc7 comment
Claus Gittinger <cg@exept.de>
parents: 6932
diff changeset
   501
    "return any element from the collection, 
032c3b210bc7 comment
Claus Gittinger <cg@exept.de>
parents: 6932
diff changeset
   502
     report an error if there is none"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   503
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   504
    self do: [:each | ^ each].
6511
0ca4f36b16ca signal an error in #anElement if there is none;
Claus Gittinger <cg@exept.de>
parents: 6506
diff changeset
   505
    self emptyCollectionError.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   506
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   507
13046
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   508
at:aKey ifNilOrAbsentPut:valueBlock
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   509
    "try to fetch the element at aKey. If either the key is invalid (as in a Dictionary)
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   510
     or there is no element stored under that key (as in an Array), set the element 
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   511
     from the valueBlock and return it.
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   512
     Useful for lazy initialization of collections."
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   513
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   514
    |val|
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   515
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   516
    val := self at:aKey ifAbsent:[ self at:aKey put:valueBlock value ].
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   517
    val isNil ifTrue:[
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   518
        self at:aKey put:(val := valueBlock value).
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   519
    ].
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   520
    ^ val
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   521
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   522
    "
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   523
     |d|
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   524
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   525
     d := Dictionary new.
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   526
     d at:#foo ifNilOrAbsentPut:[ 'hello' ]. 
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   527
     d     
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   528
    "
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   529
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   530
    "
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   531
     |a|
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   532
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   533
     a := Array new:10.
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   534
     a at:1 ifNilOrAbsentPut:[ 'hello' ].  
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   535
     a    
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   536
    "
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   537
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   538
    "Created: / 24-08-2010 / 17:07:21 / cg"
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   539
!
705f04952af4 added: #at:ifNilOrAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 13042
diff changeset
   540
1369
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   541
atAll:indexCollection put:anObject
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   542
    "put anObject into all indexes from indexCollection in the receiver.
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   543
     This abstract implementation requires that the receiver supports
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   544
     access via a key (and indexCollection contains valid keys).
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   545
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   546
     Notice: This operation modifies the receiver, NOT a copy;
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   547
     therefore the change may affect all others referencing the receiver."
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   548
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   549
    indexCollection do:[:index | self at:index put:anObject]
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   550
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   551
    "
3469
2c7f6fc4685a started args / returns comments.
Claus Gittinger <cg@exept.de>
parents: 3402
diff changeset
   552
     args:    indexCollection : <Collection of keys<object> >
2c7f6fc4685a started args / returns comments.
Claus Gittinger <cg@exept.de>
parents: 3402
diff changeset
   553
     returns: self
2c7f6fc4685a started args / returns comments.
Claus Gittinger <cg@exept.de>
parents: 3402
diff changeset
   554
    "
2c7f6fc4685a started args / returns comments.
Claus Gittinger <cg@exept.de>
parents: 3402
diff changeset
   555
2c7f6fc4685a started args / returns comments.
Claus Gittinger <cg@exept.de>
parents: 3402
diff changeset
   556
    "
1369
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   557
     (Array new:10) atAll:(1 to:5) put:0
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   558
     (Array new:10) atAll:#(1 5 6 9) put:0
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   559
     (Dictionary new) atAll:#(foo bar baz) put:'hello' 
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   560
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   561
    raises an error:
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   562
     (Set new) atAll:#(foo bar baz) put:'hello' 
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   563
    "
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   564
3469
2c7f6fc4685a started args / returns comments.
Claus Gittinger <cg@exept.de>
parents: 3402
diff changeset
   565
    "Modified: / 20.5.1998 / 14:50:46 / cg"
1369
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   566
!
5e7b6fabd248 raised #atAll:put: up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1359
diff changeset
   567
4985
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   568
fifth
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   569
    "return the fifth element of the collection.
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   570
     For unordered collections, this simply returns the fifth
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   571
     element when enumerating them.
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   572
     This should be redefined in subclasses."
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   573
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   574
    ^ self nth:5
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   575
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   576
    "
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   577
     #(1 2 3 4 5) fifth
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   578
    "
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   579
!
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   580
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   581
first
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   582
    "return the first element of the collection.
4855
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4680
diff changeset
   583
     For unordered collections, this simply returns the first
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4680
diff changeset
   584
     element when enumerating them.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   585
     This should be redefined in subclasses."
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   586
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   587
    self do:[:e | ^ e].
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   588
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   589
    "error if collection is empty"
155
edd7fc34e104 *** empty log message ***
claus
parents: 140
diff changeset
   590
    ^ self emptyCollectionError
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   591
!
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   592
5887
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   593
first:n
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   594
    "return the n first elements of the collection.
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   595
     Raises an error if there are not enough elements in the receiver.
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   596
     For unordered collections, this simply returns the first
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   597
     n elements when enumerating them 
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   598
     (Warning: the contents of the returned collection is not deterministic in this case).
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   599
     This should be redefined in subclasses."
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   600
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   601
    |coll remain|
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   602
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   603
    n < 0 ifTrue:[self error:'bad (negative) argument'].
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   604
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   605
    coll := OrderedCollection new.
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   606
    remain := n.    
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   607
    self do:[:e | 
13741
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   608
        coll add:e.
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   609
        remain := remain - 1.
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   610
        remain == 0 ifTrue:[
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   611
            ^ coll
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   612
        ].
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   613
    ].
5887
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   614
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   615
    "error if collection has not enough elements"
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   616
    ^ self notEnoughElementsError
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   617
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   618
    "
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   619
     #(1 2 3 4 5) first:3           
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   620
     #(1 2 3 4 5) asSet first:3           
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   621
    "
13741
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   622
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   623
    "Modified (format): / 29-09-2011 / 10:16:49 / cg"
5887
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   624
!
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   625
936
9054edb471b3 added #firstIfEmpty: / #lastIfEmpty:
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   626
firstIfEmpty:exceptionValue
9054edb471b3 added #firstIfEmpty: / #lastIfEmpty:
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   627
    "return the first element of the collection.
10593
0c94ad48bbd3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10504
diff changeset
   628
     If its empty, return the exceptionValue.
936
9054edb471b3 added #firstIfEmpty: / #lastIfEmpty:
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   629
     (i.e. dont trigger an error as done in #first)"
9054edb471b3 added #firstIfEmpty: / #lastIfEmpty:
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   630
9054edb471b3 added #firstIfEmpty: / #lastIfEmpty:
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   631
    self isEmpty ifTrue:[^ exceptionValue value].
10593
0c94ad48bbd3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10504
diff changeset
   632
    ^ self first
0c94ad48bbd3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10504
diff changeset
   633
0c94ad48bbd3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10504
diff changeset
   634
    "Modified: / 04-06-2007 / 22:36:14 / cg"
0c94ad48bbd3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10504
diff changeset
   635
!
0c94ad48bbd3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10504
diff changeset
   636
0c94ad48bbd3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10504
diff changeset
   637
firstOrNil
0c94ad48bbd3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10504
diff changeset
   638
    "return the first element of the collection.
0c94ad48bbd3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10504
diff changeset
   639
     If its empty, return nil.
0c94ad48bbd3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10504
diff changeset
   640
     (i.e. dont trigger an error as done in #first)"
0c94ad48bbd3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10504
diff changeset
   641
0c94ad48bbd3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10504
diff changeset
   642
    ^ self firstIfEmpty:nil
0c94ad48bbd3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10504
diff changeset
   643
0c94ad48bbd3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10504
diff changeset
   644
    "Created: / 04-06-2007 / 22:36:07 / cg"
936
9054edb471b3 added #firstIfEmpty: / #lastIfEmpty:
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   645
!
9054edb471b3 added #firstIfEmpty: / #lastIfEmpty:
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   646
4985
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   647
fourth
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   648
    "return the fourth element of the collection.
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   649
     For unordered collections, this simply returns the fourth
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   650
     element when enumerating them.
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   651
     This should be redefined in subclasses."
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   652
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   653
    ^ self nth:4
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   654
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   655
    "
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   656
     #(1 2 3 4) fourth
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   657
    "
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   658
!
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   659
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   660
last
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   661
    "return the last element of the collection.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   662
     This should be redefined in subclasses."
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   663
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   664
    |theLastOne any|
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   665
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   666
    any := false.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   667
    self do:[:e | any := true. theLastOne := e].
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   668
    any ifTrue:[
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
   669
        ^ theLastOne
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   670
    ].
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   671
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   672
    "error if collection is empty"
155
edd7fc34e104 *** empty log message ***
claus
parents: 140
diff changeset
   673
    ^ self emptyCollectionError
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   674
!
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   675
5887
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   676
last:n
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   677
    "return the n last elements of the collection.
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   678
     Raises an error if there are not enough elements in the receiver.
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   679
     For unordered collections, this simply returns the last
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   680
     n elements when enumerating them 
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   681
     (Warning: the contents of the returned collection is not deterministic in this case).
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   682
     This should be redefined in subclasses since the implementation here is VERY inefficient."
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   683
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   684
    |coll remain|
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   685
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   686
    n < 0 ifTrue:[self error:'bad (negative) argument'].
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   687
10798
18d87b8fce50 Clean up code and document differences between #add: and #addLast:
Stefan Vogel <sv@exept.de>
parents: 10795
diff changeset
   688
    coll := OrderedCollection new:n.
5887
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   689
    remain := n.    
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   690
    self do:[:e | 
13741
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   691
        remain > 0 ifTrue:[
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   692
            remain := remain - 1.
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   693
        ] ifFalse:[
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   694
            coll removeFirst.
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   695
        ].
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   696
        coll add:e.
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   697
    ].
5887
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   698
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   699
    remain ~~ 0 ifTrue:[
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   700
        "error if collection has not enough elements"
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   701
        ^ self notEnoughElementsError
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   702
    ].
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   703
    ^ coll
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   704
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   705
    "
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   706
     #(1 2 3 4 5) last:3           
10798
18d87b8fce50 Clean up code and document differences between #add: and #addLast:
Stefan Vogel <sv@exept.de>
parents: 10795
diff changeset
   707
     #(1 2 3 4 5 6 7 8 9 0) asSet last:3           
5887
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   708
     'hello world' last:5           
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   709
    "
13741
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   710
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   711
    "Modified (format): / 29-09-2011 / 10:16:22 / cg"
5887
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   712
!
803c3ff82afe added #first: / #last:
Claus Gittinger <cg@exept.de>
parents: 5874
diff changeset
   713
936
9054edb471b3 added #firstIfEmpty: / #lastIfEmpty:
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   714
lastIfEmpty:exceptionValue
9054edb471b3 added #firstIfEmpty: / #lastIfEmpty:
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   715
    "return the last element of the collection.
9054edb471b3 added #firstIfEmpty: / #lastIfEmpty:
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   716
     If its empty, return the exceptionValue.
9054edb471b3 added #firstIfEmpty: / #lastIfEmpty:
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   717
     (i.e. dont trigger an error as done in #last)"
9054edb471b3 added #firstIfEmpty: / #lastIfEmpty:
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   718
9054edb471b3 added #firstIfEmpty: / #lastIfEmpty:
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   719
    self isEmpty ifTrue:[^ exceptionValue value].
9054edb471b3 added #firstIfEmpty: / #lastIfEmpty:
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   720
    ^ self last
9054edb471b3 added #firstIfEmpty: / #lastIfEmpty:
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   721
9054edb471b3 added #firstIfEmpty: / #lastIfEmpty:
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   722
    "Modified: 6.2.1996 / 15:27:17 / cg"
9054edb471b3 added #firstIfEmpty: / #lastIfEmpty:
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   723
    "Created: 6.2.1996 / 15:27:49 / cg"
4855
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4680
diff changeset
   724
!
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4680
diff changeset
   725
9073
cb81da1b2ad5 +median
Claus Gittinger <cg@exept.de>
parents: 9065
diff changeset
   726
median
cb81da1b2ad5 +median
Claus Gittinger <cg@exept.de>
parents: 9065
diff changeset
   727
    "Return the middle element, or as close as we can get."
cb81da1b2ad5 +median
Claus Gittinger <cg@exept.de>
parents: 9065
diff changeset
   728
cb81da1b2ad5 +median
Claus Gittinger <cg@exept.de>
parents: 9065
diff changeset
   729
    ^ self asSortedCollection median
cb81da1b2ad5 +median
Claus Gittinger <cg@exept.de>
parents: 9065
diff changeset
   730
cb81da1b2ad5 +median
Claus Gittinger <cg@exept.de>
parents: 9065
diff changeset
   731
    "
cb81da1b2ad5 +median
Claus Gittinger <cg@exept.de>
parents: 9065
diff changeset
   732
     #(10 35 20 45 30 5) median
cb81da1b2ad5 +median
Claus Gittinger <cg@exept.de>
parents: 9065
diff changeset
   733
    "
cb81da1b2ad5 +median
Claus Gittinger <cg@exept.de>
parents: 9065
diff changeset
   734
!
cb81da1b2ad5 +median
Claus Gittinger <cg@exept.de>
parents: 9065
diff changeset
   735
4985
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   736
nth:n
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   737
    "return the nth element of the collection.
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   738
     For unordered collections, this simply returns the nth
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   739
     element when enumerating them.
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   740
     This should be redefined in subclasses."
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   741
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   742
    |count|
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   743
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   744
    count := 1.
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   745
    self do:[:e | 
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   746
        count == n ifTrue:[^ e].
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   747
        count := count + 1
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   748
    ].
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   749
5266
1c2cd81b138d comments
Claus Gittinger <cg@exept.de>
parents: 5265
diff changeset
   750
    "error if collection is smaller"
1c2cd81b138d comments
Claus Gittinger <cg@exept.de>
parents: 5265
diff changeset
   751
    ^ self notEnoughElementsError
4985
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   752
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   753
    "
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   754
     #(1 2 3 4) nth:3
5266
1c2cd81b138d comments
Claus Gittinger <cg@exept.de>
parents: 5265
diff changeset
   755
     #(1 2 3 4) nth:5
1c2cd81b138d comments
Claus Gittinger <cg@exept.de>
parents: 5265
diff changeset
   756
1c2cd81b138d comments
Claus Gittinger <cg@exept.de>
parents: 5265
diff changeset
   757
     #(1 2 3 4) asSet nth:3  
1c2cd81b138d comments
Claus Gittinger <cg@exept.de>
parents: 5265
diff changeset
   758
     #(1 2 3 4) asSet nth:5
4985
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   759
    "
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   760
!
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   761
11916
Claus Gittinger <cg@exept.de>
parents: 11871
diff changeset
   762
order
Claus Gittinger <cg@exept.de>
parents: 11871
diff changeset
   763
    "report an error that only OrderedXXX's have an order"
Claus Gittinger <cg@exept.de>
parents: 11871
diff changeset
   764
Claus Gittinger <cg@exept.de>
parents: 11871
diff changeset
   765
    self shouldNotImplement
Claus Gittinger <cg@exept.de>
parents: 11871
diff changeset
   766
!
Claus Gittinger <cg@exept.de>
parents: 11871
diff changeset
   767
4855
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4680
diff changeset
   768
second
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4680
diff changeset
   769
    "return the second element of the collection.
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4680
diff changeset
   770
     For unordered collections, this simply returns the second
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4680
diff changeset
   771
     element when enumerating them.
7129
3ebfa1a3c956 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   772
     This should be redefined in subclasses."
3ebfa1a3c956 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   773
3ebfa1a3c956 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   774
    ^ self nth:2
4855
d2abe6d95aa1 added #second
Claus Gittinger <cg@exept.de>
parents: 4680
diff changeset
   775
4856
2f28355b6e9f added #third
Claus Gittinger <cg@exept.de>
parents: 4855
diff changeset
   776
    "
2f28355b6e9f added #third
Claus Gittinger <cg@exept.de>
parents: 4855
diff changeset
   777
     #(1 2 3) second
2f28355b6e9f added #third
Claus Gittinger <cg@exept.de>
parents: 4855
diff changeset
   778
    "
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
   779
!
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
   780
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
   781
seventh
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
   782
    "return the seventh element of the collection.
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
   783
     For unordered collections, this simply returns the sixth
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
   784
     element when enumerating them.
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
   785
     This should be redefined in subclasses."
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
   786
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
   787
    ^ self nth:7
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
   788
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
   789
    "
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
   790
     #(1 2 3 4 5 6 7) seventh
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
   791
    "
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
   792
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
   793
    "Created: / 1.11.2001 / 16:43:29 / cg"
4856
2f28355b6e9f added #third
Claus Gittinger <cg@exept.de>
parents: 4855
diff changeset
   794
!
2f28355b6e9f added #third
Claus Gittinger <cg@exept.de>
parents: 4855
diff changeset
   795
4985
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   796
sixth
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   797
    "return the sixth element of the collection.
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   798
     For unordered collections, this simply returns the sixth
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   799
     element when enumerating them.
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   800
     This should be redefined in subclasses."
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   801
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   802
    ^ self nth:6
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   803
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   804
    "
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   805
     #(1 2 3 4 5 6 7) sixth
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   806
    "
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   807
!
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   808
4856
2f28355b6e9f added #third
Claus Gittinger <cg@exept.de>
parents: 4855
diff changeset
   809
third
2f28355b6e9f added #third
Claus Gittinger <cg@exept.de>
parents: 4855
diff changeset
   810
    "return the third element of the collection.
2f28355b6e9f added #third
Claus Gittinger <cg@exept.de>
parents: 4855
diff changeset
   811
     For unordered collections, this simply returns the third
2f28355b6e9f added #third
Claus Gittinger <cg@exept.de>
parents: 4855
diff changeset
   812
     element when enumerating them.
2f28355b6e9f added #third
Claus Gittinger <cg@exept.de>
parents: 4855
diff changeset
   813
     This should be redefined in subclasses."
2f28355b6e9f added #third
Claus Gittinger <cg@exept.de>
parents: 4855
diff changeset
   814
4985
b5df34fc8a20 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4980
diff changeset
   815
    ^ self nth:3
4856
2f28355b6e9f added #third
Claus Gittinger <cg@exept.de>
parents: 4855
diff changeset
   816
2f28355b6e9f added #third
Claus Gittinger <cg@exept.de>
parents: 4855
diff changeset
   817
    "
2f28355b6e9f added #third
Claus Gittinger <cg@exept.de>
parents: 4855
diff changeset
   818
     #(1 2 3) third
2f28355b6e9f added #third
Claus Gittinger <cg@exept.de>
parents: 4855
diff changeset
   819
    "
13741
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   820
cc55df8d23dc comment/format in:
Claus Gittinger <cg@exept.de>
parents: 13699
diff changeset
   821
    "Modified (format): / 29-09-2011 / 10:17:25 / cg"
12666
e550058af086 added: #values
Claus Gittinger <cg@exept.de>
parents: 12653
diff changeset
   822
!
e550058af086 added: #values
Claus Gittinger <cg@exept.de>
parents: 12653
diff changeset
   823
e550058af086 added: #values
Claus Gittinger <cg@exept.de>
parents: 12653
diff changeset
   824
values
e550058af086 added: #values
Claus Gittinger <cg@exept.de>
parents: 12653
diff changeset
   825
    "return a collection containing all values of the receiver.
e550058af086 added: #values
Claus Gittinger <cg@exept.de>
parents: 12653
diff changeset
   826
     This is to make value access to an OrderedDictionary compatible with any-Collection"
e550058af086 added: #values
Claus Gittinger <cg@exept.de>
parents: 12653
diff changeset
   827
e550058af086 added: #values
Claus Gittinger <cg@exept.de>
parents: 12653
diff changeset
   828
    |aCollection|
e550058af086 added: #values
Claus Gittinger <cg@exept.de>
parents: 12653
diff changeset
   829
e550058af086 added: #values
Claus Gittinger <cg@exept.de>
parents: 12653
diff changeset
   830
    aCollection := OrderedCollection new.
e550058af086 added: #values
Claus Gittinger <cg@exept.de>
parents: 12653
diff changeset
   831
    self do:[:value| aCollection add:value].
e550058af086 added: #values
Claus Gittinger <cg@exept.de>
parents: 12653
diff changeset
   832
    ^ aCollection
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   833
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   834
a27a279701f8 Initial revision
claus
parents:
diff changeset
   835
!Collection methodsFor:'adding & removing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   836
a27a279701f8 Initial revision
claus
parents:
diff changeset
   837
add:anObject
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
   838
    "add the argument, anObject to the receiver.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
   839
     If the receiver is ordered, the position of the new element is undefined
7168
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
   840
     (i.e. don't depend on where it will be put).
2351
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   841
     An error is raised here - it is to be implemented by a concrete subclass."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   842
a27a279701f8 Initial revision
claus
parents:
diff changeset
   843
    ^ self subclassResponsibility
2351
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   844
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   845
    "Modified: 1.2.1997 / 11:57:08 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   846
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   847
1373
2c7cab1a4a2e oops - typo; occurrences has two r's
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   848
add:newObject withOccurrences:anInteger
2c7cab1a4a2e oops - typo; occurrences has two r's
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   849
    "add the argument, anObject anInteger times to the receiver.
2c7cab1a4a2e oops - typo; occurrences has two r's
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   850
     Returns the object."
2c7cab1a4a2e oops - typo; occurrences has two r's
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   851
2c7cab1a4a2e oops - typo; occurrences has two r's
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   852
    anInteger timesRepeat:[self add:newObject].
2c7cab1a4a2e oops - typo; occurrences has two r's
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   853
    ^ newObject
2c7cab1a4a2e oops - typo; occurrences has two r's
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   854
2c7cab1a4a2e oops - typo; occurrences has two r's
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   855
    "Created: 11.5.1996 / 12:13:48 / cg"
2c7cab1a4a2e oops - typo; occurrences has two r's
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   856
!
2c7cab1a4a2e oops - typo; occurrences has two r's
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   857
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   858
addAll:aCollection
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   859
    "add all elements of the argument, aCollection to the receiver.
7752
134213bdebd8 comment
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
   860
     Returns the argument, aCollection (sigh)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   861
a27a279701f8 Initial revision
claus
parents:
diff changeset
   862
    aCollection do:[:element |
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   863
        self add:element
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   864
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   865
    ^ aCollection
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
   866
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
   867
    "
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
   868
     #(1 2 3 4) copy addAll:#(5 6 7 8)
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
   869
     #(1 2 3 4) asOrderedCollection addAll:#(5 6 7 8)
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
   870
    "
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   871
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   872
    "Modified: 12.4.1996 / 13:29:20 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   873
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   874
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
   875
addAllFirst:aCollection
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
   876
    "insert all elements of the argument, aCollection at the beginning
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   877
     of the receiver. Returns the argument, aCollection."
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
   878
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
   879
    aCollection reverseDo:[:element | 
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   880
        self addFirst:element 
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
   881
    ].
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
   882
    ^ aCollection
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
   883
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
   884
    "
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
   885
     |c|
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
   886
     c := #(4 3 2 1) asOrderedCollection.
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   887
     c addAllFirst:#(9 8 7 6 5).
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   888
     c   
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
   889
    "
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   890
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   891
    "Modified: 12.4.1996 / 13:30:10 / cg"
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
   892
!
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
   893
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   894
addAllLast:aCollection
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   895
    "add all elements of the argument, aCollection to the receiver.
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   896
     Returns the argument, aCollection."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   897
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   898
    aCollection do:[:element | 
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   899
        self addLast:element 
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   900
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   901
    ^ aCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   902
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   903
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   904
     |c|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   905
     c := #(4 3 2 1) asOrderedCollection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   906
     c addAllLast:#(9 8 7 6 5)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   907
    "
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   908
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   909
    "Modified: 12.4.1996 / 13:30:54 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   910
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   911
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   912
addFirst:anObject
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   913
    "add the argument, anObject to the receiver.
2351
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   914
     If the receiver is ordered, the new element will be added at the beginning.
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   915
     An error is raised here - it is to be implemented by a concrete subclass."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   916
a27a279701f8 Initial revision
claus
parents:
diff changeset
   917
    ^ self subclassResponsibility
2351
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   918
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   919
    "Modified: 1.2.1997 / 11:57:19 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   920
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   921
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   922
addLast:anObject
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   923
    "add the argument, anObject to the receiver. 
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   924
     If the receiver is ordered, the new element will be added at the end.
10798
18d87b8fce50 Clean up code and document differences between #add: and #addLast:
Stefan Vogel <sv@exept.de>
parents: 10795
diff changeset
   925
     Return the argument, anObject.
18d87b8fce50 Clean up code and document differences between #add: and #addLast:
Stefan Vogel <sv@exept.de>
parents: 10795
diff changeset
   926
18d87b8fce50 Clean up code and document differences between #add: and #addLast:
Stefan Vogel <sv@exept.de>
parents: 10795
diff changeset
   927
     This usually has the same semantics as #add:. 
18d87b8fce50 Clean up code and document differences between #add: and #addLast:
Stefan Vogel <sv@exept.de>
parents: 10795
diff changeset
   928
     OrderedSet and OrderedDictionary redefine this, to move anObject to
18d87b8fce50 Clean up code and document differences between #add: and #addLast:
Stefan Vogel <sv@exept.de>
parents: 10795
diff changeset
   929
     the end, even if it is already present in the collection."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   930
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   931
    ^ self add:anObject
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   932
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   933
    "Modified: 12.4.1996 / 13:31:12 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   934
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   935
3124
d3b7387842d2 use #contents: instead #removeAll and #addAll:
tz
parents: 3102
diff changeset
   936
contents:aCollection
3767
bbf560999d90 care for nil arg in #contents:
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   937
    "set my contents from aCollection
5265
96ac13085fea comments
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
   938
     - this may be redefined in a concrete subclass for more performance"
3124
d3b7387842d2 use #contents: instead #removeAll and #addAll:
tz
parents: 3102
diff changeset
   939
6042
04414166010e check for bad arg in #contents:
Claus Gittinger <cg@exept.de>
parents: 5887
diff changeset
   940
    aCollection == self ifTrue:[
04414166010e check for bad arg in #contents:
Claus Gittinger <cg@exept.de>
parents: 5887
diff changeset
   941
        "/ self error:'should not happen'.
04414166010e check for bad arg in #contents:
Claus Gittinger <cg@exept.de>
parents: 5887
diff changeset
   942
        ^ self
04414166010e check for bad arg in #contents:
Claus Gittinger <cg@exept.de>
parents: 5887
diff changeset
   943
    ].
04414166010e check for bad arg in #contents:
Claus Gittinger <cg@exept.de>
parents: 5887
diff changeset
   944
3767
bbf560999d90 care for nil arg in #contents:
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   945
    self removeAll.
bbf560999d90 care for nil arg in #contents:
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   946
    aCollection notNil ifTrue:[
bbf560999d90 care for nil arg in #contents:
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   947
        self addAll:aCollection
bbf560999d90 care for nil arg in #contents:
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   948
    ]
3124
d3b7387842d2 use #contents: instead #removeAll and #addAll:
tz
parents: 3102
diff changeset
   949
3767
bbf560999d90 care for nil arg in #contents:
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   950
    "Modified: / 17.8.1998 / 10:18:43 / cg"
3124
d3b7387842d2 use #contents: instead #removeAll and #addAll:
tz
parents: 3102
diff changeset
   951
!
d3b7387842d2 use #contents: instead #removeAll and #addAll:
tz
parents: 3102
diff changeset
   952
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   953
remove:anObject
2351
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   954
    "search for the first element, which is equal to anObject;
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   955
     if found, remove and return it.
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   956
     If not found, report a 'value not found'-error.
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   957
     Uses equality compare (=) to search for the occurrence."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   958
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   959
    ^ self remove:anObject ifAbsent:[self errorValueNotFound:anObject]
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   960
2351
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   961
    "Modified: 1.2.1997 / 11:58:48 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   962
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   963
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   964
remove:anObject ifAbsent:exceptionBlock
2351
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   965
    "search for the first element, which is equal to anObject;
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   966
     if found, remove and return it.
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   967
     If not found, return the the value of the exceptionBlock.
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   968
     Uses equality compare (=) to search for the occurrence.
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   969
     An error is raised here - it is to be implemented by a concrete subclass."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   970
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   971
    ^ self subclassResponsibility
2351
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   972
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
   973
    "Modified: 1.2.1997 / 11:56:53 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   974
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   975
134
c96945f0aa1d added removeAll
claus
parents: 92
diff changeset
   976
removeAll
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   977
    "remove all elements from the receiver. Returns the receiver.
134
c96945f0aa1d added removeAll
claus
parents: 92
diff changeset
   978
     This should be reimplemented in subclasses for better
c96945f0aa1d added removeAll
claus
parents: 92
diff changeset
   979
     performance."
c96945f0aa1d added removeAll
claus
parents: 92
diff changeset
   980
2383
8b2957f5ec90 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2351
diff changeset
   981
    [self isEmpty] whileFalse:[
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   982
        self removeFirst
134
c96945f0aa1d added removeAll
claus
parents: 92
diff changeset
   983
    ].
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   984
2383
8b2957f5ec90 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2351
diff changeset
   985
    "Modified: 12.2.1997 / 12:40:29 / cg"
134
c96945f0aa1d added removeAll
claus
parents: 92
diff changeset
   986
!
c96945f0aa1d added removeAll
claus
parents: 92
diff changeset
   987
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   988
removeAll:aCollection
12993
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
   989
    "remove all elements from the receiver which are equal to any in aCollection.
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   990
     Return the argument, aCollection.
5267
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
   991
     Raises an error, if some element-to-remove is not in the receiver.
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
   992
     (see also: #removeAllFoundIn:, which does not raise an error).
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   993
360
claus
parents: 348
diff changeset
   994
     Notice: for some collections (those not tuned for
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   995
             resizing themself) this may be very slow.
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   996
             If the number of removed elements is big compared to to
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   997
             the receivers size, it may be better to copy the
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
   998
             ones which are not to be removed into a new collection."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   999
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1000
    aCollection do:[:element | self remove:element].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1001
    ^ aCollection
1163
ad6f6532c54b commentary
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
  1002
5268
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1003
    "
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1004
     |coll|
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1005
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1006
     coll := #(1 2 3 4 5 6) asSet.
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1007
     coll removeAll:#(4 5 6).
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1008
     coll
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1009
    "
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1010
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1011
    "raises an error:
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1012
     |coll|
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1013
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1014
     coll := #(1 2 3 4 5 6) asSet.
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1015
     coll removeAll:#(4 5 6 7 8).
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1016
     coll
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1017
    "
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1018
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1019
    "no error raised:
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1020
     |coll|
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1021
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1022
     coll := #(1 2 3 4 5 6) asSet.
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1023
     coll removeAllFoundIn:#(4 5 6 7 8).
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1024
     coll
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1025
    "
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1026
12993
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1027
    "Modified: / 05-08-2010 / 13:50:33 / cg"
348
claus
parents: 345
diff changeset
  1028
!
claus
parents: 345
diff changeset
  1029
5265
96ac13085fea comments
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  1030
removeAllFoundIn:aCollection 
12993
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1031
    "remove all elements from the receiver which are equal to any in aCollection.
5267
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1032
     No error is raised, if some element-to-remove is not in the receiver.
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1033
     (see also: #removeAll:, which does raise an error)."
4980
12434a0e4779 squeak compatibility stuff
ps
parents: 4892
diff changeset
  1034
12434a0e4779 squeak compatibility stuff
ps
parents: 4892
diff changeset
  1035
    aCollection do:[:each | self remove:each ifAbsent:[]].
5265
96ac13085fea comments
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  1036
    ^ aCollection
5268
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1037
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1038
    "
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1039
     |coll|
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1040
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1041
     coll := #(1 2 3 4 5 6) asSet.
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1042
     coll removeAllFoundIn:#(4 5 6 7 8).
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1043
     coll
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1044
    "
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1045
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1046
    "raises an error:
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1047
     |coll|
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1048
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1049
     coll := #(1 2 3 4 5 6) asSet.
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1050
     coll removeAll:#(4 5 6 7 8).
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1051
     coll
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1052
    "
88ee7be5c6b7 comments
Claus Gittinger <cg@exept.de>
parents: 5267
diff changeset
  1053
12993
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1054
    "Modified: / 05-08-2010 / 13:51:05 / cg"
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1055
!
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1056
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1057
removeAllIdentical:aCollection
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1058
    "remove all elements from the receiver which are in aCollection.
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1059
     Return the argument, aCollection.
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1060
     Raises an error, if some element-to-remove is not in the receiver.
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1061
     (see also: #removeAllFoundIn:, which does not raise an error).
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1062
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1063
     Notice: for some collections (those not tuned for
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1064
             resizing themself) this may be very slow.
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1065
             If the number of removed elements is big compared to to
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1066
             the receivers size, it may be better to copy the
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1067
             ones which are not to be removed into a new collection."
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1068
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1069
    aCollection do:[:element | self removeIdentical:element].
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1070
    ^ aCollection
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1071
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1072
    "
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1073
     |coll|
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1074
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1075
     coll := #(1 2 3 4 5 6) asSet.
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1076
     coll removeAll:#(4 5 6).
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1077
     coll
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1078
    "
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1079
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1080
    "raises an error:
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1081
     |coll|
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1082
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1083
     coll := #(1 2 3 4 5 6) asSet.
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1084
     coll removeAll:#(4 5 6 7 8).
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1085
     coll
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1086
    "
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1087
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1088
    "no error raised:
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1089
     |coll|
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1090
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1091
     coll := #(1 2 3 4 5 6) asSet.
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1092
     coll removeAllFoundIn:#(4 5 6 7 8).
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1093
     coll
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1094
    "
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1095
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1096
    "Created: / 05-08-2010 / 13:51:51 / cg"
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1097
!
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1098
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1099
removeAllIdenticalFoundIn:aCollection 
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1100
    "remove all elements from the receiver which are in aCollection.
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1101
     No error is raised, if some element-to-remove is not in the receiver.
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1102
     (see also: #removeAll:, which does raise an error)."
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1103
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1104
    aCollection do:[:each | self removeIdentical:each ifAbsent:[]].
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1105
    ^ aCollection
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1106
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1107
    "
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1108
     |coll|
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1109
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1110
     coll := #(1 2 3 4 5 6) asSet.
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1111
     coll removeAllFoundIn:#(4 5 6 7 8).
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1112
     coll
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1113
    "
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1114
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1115
    "raises an error:
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1116
     |coll|
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1117
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1118
     coll := #(1 2 3 4 5 6) asSet.
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1119
     coll removeAll:#(4 5 6 7 8).
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1120
     coll
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1121
    "
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1122
Claus Gittinger <cg@exept.de>
parents: 12945
diff changeset
  1123
    "Created: / 05-08-2010 / 13:52:21 / cg"
4980
12434a0e4779 squeak compatibility stuff
ps
parents: 4892
diff changeset
  1124
!
12434a0e4779 squeak compatibility stuff
ps
parents: 4892
diff changeset
  1125
12636
6f6b3188b285 added: #removeAllKeys:
Claus Gittinger <cg@exept.de>
parents: 12593
diff changeset
  1126
removeAllKeys:aCollection
6f6b3188b285 added: #removeAllKeys:
Claus Gittinger <cg@exept.de>
parents: 12593
diff changeset
  1127
    "remove all keys of the argument, aCollection from the receiver.
6f6b3188b285 added: #removeAllKeys:
Claus Gittinger <cg@exept.de>
parents: 12593
diff changeset
  1128
     Raises an error, if some element-to-remove is not in the receiver.
6f6b3188b285 added: #removeAllKeys:
Claus Gittinger <cg@exept.de>
parents: 12593
diff changeset
  1129
     Notice: only works for keyed collections, such as dictionaries."
6f6b3188b285 added: #removeAllKeys:
Claus Gittinger <cg@exept.de>
parents: 12593
diff changeset
  1130
6f6b3188b285 added: #removeAllKeys:
Claus Gittinger <cg@exept.de>
parents: 12593
diff changeset
  1131
    aCollection do:[:element | self removeKey:element].
6f6b3188b285 added: #removeAllKeys:
Claus Gittinger <cg@exept.de>
parents: 12593
diff changeset
  1132
!
6f6b3188b285 added: #removeAllKeys:
Claus Gittinger <cg@exept.de>
parents: 12593
diff changeset
  1133
5265
96ac13085fea comments
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  1134
removeAllSuchThat:aBlock
4980
12434a0e4779 squeak compatibility stuff
ps
parents: 4892
diff changeset
  1135
    "Apply the condition to each element and remove it if the condition is true.  
5265
96ac13085fea comments
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  1136
     Return a collection of removed elements.
5267
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1137
     First elements-to-remove are collected, then removed in one operation."
4980
12434a0e4779 squeak compatibility stuff
ps
parents: 4892
diff changeset
  1138
5267
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1139
    |removedElements|
4980
12434a0e4779 squeak compatibility stuff
ps
parents: 4892
diff changeset
  1140
5267
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1141
    removedElements := OrderedCollection new.
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1142
    self do:[:element |
4980
12434a0e4779 squeak compatibility stuff
ps
parents: 4892
diff changeset
  1143
        (aBlock value:element) ifTrue: [
5267
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1144
            removedElements add:element
4980
12434a0e4779 squeak compatibility stuff
ps
parents: 4892
diff changeset
  1145
        ]
12434a0e4779 squeak compatibility stuff
ps
parents: 4892
diff changeset
  1146
    ].
5267
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1147
    self removeAll:removedElements.
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1148
    ^ removedElements
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1149
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1150
    "
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1151
     |coll|
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1152
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1153
     coll := #(1 2 3 4 5 6 7 8 9 10) asOrderedCollection.
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1154
     coll removeAllSuchThat:[:el | el even].
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1155
     coll     
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1156
    "
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1157
    "
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1158
     |coll|
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1159
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1160
     coll := #(1 2 3 4 5 6 7 8 9 10) asSet.
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1161
     coll removeAllSuchThat:[:el | el even].
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1162
     coll     
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1163
    "
290b22fd8773 comments
Claus Gittinger <cg@exept.de>
parents: 5266
diff changeset
  1164
4980
12434a0e4779 squeak compatibility stuff
ps
parents: 4892
diff changeset
  1165
!
12434a0e4779 squeak compatibility stuff
ps
parents: 4892
diff changeset
  1166
348
claus
parents: 345
diff changeset
  1167
removeFirst
claus
parents: 345
diff changeset
  1168
    "remove the first element from the receiver.
claus
parents: 345
diff changeset
  1169
     Return the removed element."
claus
parents: 345
diff changeset
  1170
1561
1f64a9b522c2 at least a suboptimal #removeFirst: can be provided by Collection
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1171
    self do:[:element |
1f64a9b522c2 at least a suboptimal #removeFirst: can be provided by Collection
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1172
        self remove:element.
1f64a9b522c2 at least a suboptimal #removeFirst: can be provided by Collection
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1173
        ^ element.
1f64a9b522c2 at least a suboptimal #removeFirst: can be provided by Collection
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1174
    ].
1f64a9b522c2 at least a suboptimal #removeFirst: can be provided by Collection
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1175
    ^ self emptyCollectionError
1f64a9b522c2 at least a suboptimal #removeFirst: can be provided by Collection
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1176
1f64a9b522c2 at least a suboptimal #removeFirst: can be provided by Collection
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1177
    "
1f64a9b522c2 at least a suboptimal #removeFirst: can be provided by Collection
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1178
     (Set with:3 with:2 with:1) removeFirst 
1f64a9b522c2 at least a suboptimal #removeFirst: can be provided by Collection
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1179
    "
1f64a9b522c2 at least a suboptimal #removeFirst: can be provided by Collection
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1180
1f64a9b522c2 at least a suboptimal #removeFirst: can be provided by Collection
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1181
    "Modified: 28.6.1996 / 18:55:33 / cg"
348
claus
parents: 345
diff changeset
  1182
!
claus
parents: 345
diff changeset
  1183
claus
parents: 345
diff changeset
  1184
removeFirst:n
claus
parents: 345
diff changeset
  1185
    "remove the first n elements from the receiver.
5265
96ac13085fea comments
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  1186
     Return a collection of removed elements.
360
claus
parents: 348
diff changeset
  1187
     Notice: for some collections (those not tuned for
5265
96ac13085fea comments
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  1188
             resizing themself) this may be very slow."
348
claus
parents: 345
diff changeset
  1189
claus
parents: 345
diff changeset
  1190
    |ret|
claus
parents: 345
diff changeset
  1191
claus
parents: 345
diff changeset
  1192
    self size < n ifTrue:[
5265
96ac13085fea comments
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  1193
        ^ self notEnoughElementsError
348
claus
parents: 345
diff changeset
  1194
    ].
claus
parents: 345
diff changeset
  1195
    ret := Array new:n.
claus
parents: 345
diff changeset
  1196
    1 to:n do:[:i |
5265
96ac13085fea comments
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  1197
        ret at:i put:(self removeFirst).
348
claus
parents: 345
diff changeset
  1198
    ].
claus
parents: 345
diff changeset
  1199
    ^ ret
claus
parents: 345
diff changeset
  1200
!
claus
parents: 345
diff changeset
  1201
2351
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1202
removeIdentical:anObject
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1203
    "search for the first element, which is identical to anObject;
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1204
     if found, remove and return it.
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1205
     If not found, report a 'value not found'-error.
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1206
     Uses identity compare (==) to search for the occurrence."
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1207
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1208
    ^ self removeIdentical:anObject ifAbsent:[self errorValueNotFound:anObject]
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1209
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1210
    "Modified: 12.4.1996 / 13:33:30 / cg"
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1211
    "Created: 1.2.1997 / 11:59:10 / cg"
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1212
!
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1213
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1214
removeIdentical:anObject ifAbsent:exceptionBlock
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1215
    "search for the first element, which is identical to anObject;
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1216
     if found, remove and return it.
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1217
     If not found, return the the value of the exceptionBlock.
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1218
     Uses identity compare (==) to search for the occurrence.
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1219
     An error is raised here - it is to be implemented by a concrete subclass."
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1220
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1221
    ^ self subclassResponsibility
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1222
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1223
    "Created: 1.2.1997 / 11:56:01 / cg"
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1224
    "Modified: 1.2.1997 / 11:56:59 / cg"
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1225
!
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1226
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1227
removeLast
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1228
    "remove the last element from the receiver.
2351
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1229
     Return the removed element.
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1230
     An error is raised here - it is to be implemented by a concrete subclass."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1231
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1232
    ^ self subclassResponsibility
2351
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1233
84ff33437bbd added #removeIdentical:
Claus Gittinger <cg@exept.de>
parents: 2289
diff changeset
  1234
    "Modified: 1.2.1997 / 11:57:53 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1235
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1236
348
claus
parents: 345
diff changeset
  1237
removeLast:n
11331
443e9f4efd2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11315
diff changeset
  1238
    "remove the last n elements from the receiver collection.
5265
96ac13085fea comments
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  1239
     Return a collection of removed elements.
11331
443e9f4efd2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11315
diff changeset
  1240
     Notice: for some collections this may be very slow
443e9f4efd2f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11315
diff changeset
  1241
             (those not tuned for resizing themself)."
348
claus
parents: 345
diff changeset
  1242
claus
parents: 345
diff changeset
  1243
    |ret|
claus
parents: 345
diff changeset
  1244
claus
parents: 345
diff changeset
  1245
    self size < n ifTrue:[
5265
96ac13085fea comments
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  1246
        ^ self notEnoughElementsError
348
claus
parents: 345
diff changeset
  1247
    ].
claus
parents: 345
diff changeset
  1248
    ret := Array new:n.
claus
parents: 345
diff changeset
  1249
    n to:1 by:-1 do:[:i |
5265
96ac13085fea comments
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  1250
        ret at:i put:(self removeLast).
348
claus
parents: 345
diff changeset
  1251
    ].
claus
parents: 345
diff changeset
  1252
    ^ ret
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1253
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1254
8858
a35d6c7eeee0 comments
Claus Gittinger <cg@exept.de>
parents: 8833
diff changeset
  1255
!Collection methodsFor:'bulk operations'!
a35d6c7eeee0 comments
Claus Gittinger <cg@exept.de>
parents: 8833
diff changeset
  1256
12116
6d56a4ffc514 added: #abs
Claus Gittinger <cg@exept.de>
parents: 12115
diff changeset
  1257
abs
13317
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  1258
    "absolute value of all elements in the collection"
12116
6d56a4ffc514 added: #abs
Claus Gittinger <cg@exept.de>
parents: 12115
diff changeset
  1259
6d56a4ffc514 added: #abs
Claus Gittinger <cg@exept.de>
parents: 12115
diff changeset
  1260
    ^ self collect: [:a | a abs]
6d56a4ffc514 added: #abs
Claus Gittinger <cg@exept.de>
parents: 12115
diff changeset
  1261
6d56a4ffc514 added: #abs
Claus Gittinger <cg@exept.de>
parents: 12115
diff changeset
  1262
    "
6d56a4ffc514 added: #abs
Claus Gittinger <cg@exept.de>
parents: 12115
diff changeset
  1263
     TestCase assert:( { 1. -2. -3. 4 } abs = { 1. 2. 3. 4 }).
6d56a4ffc514 added: #abs
Claus Gittinger <cg@exept.de>
parents: 12115
diff changeset
  1264
    "
13317
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  1265
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  1266
    "Modified: / 18-03-2011 / 10:33:50 / cg"
13316
d61e667b14a0 added: #average
Claus Gittinger <cg@exept.de>
parents: 13226
diff changeset
  1267
!
d61e667b14a0 added: #average
Claus Gittinger <cg@exept.de>
parents: 13226
diff changeset
  1268
12115
d98ebd2806ac added: #negated
Claus Gittinger <cg@exept.de>
parents: 12090
diff changeset
  1269
negated
13317
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  1270
    "negated value of all elements in the collection"
12115
d98ebd2806ac added: #negated
Claus Gittinger <cg@exept.de>
parents: 12090
diff changeset
  1271
d98ebd2806ac added: #negated
Claus Gittinger <cg@exept.de>
parents: 12090
diff changeset
  1272
    ^ self collect:[:a | a negated]
d98ebd2806ac added: #negated
Claus Gittinger <cg@exept.de>
parents: 12090
diff changeset
  1273
d98ebd2806ac added: #negated
Claus Gittinger <cg@exept.de>
parents: 12090
diff changeset
  1274
    "
d98ebd2806ac added: #negated
Claus Gittinger <cg@exept.de>
parents: 12090
diff changeset
  1275
     TestCase assert:( { 1. -2. -3. 4 } negated = { -1. 2. 3. -4 }).
d98ebd2806ac added: #negated
Claus Gittinger <cg@exept.de>
parents: 12090
diff changeset
  1276
    "
13317
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  1277
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  1278
    "Modified: / 18-03-2011 / 10:33:53 / cg"
12115
d98ebd2806ac added: #negated
Claus Gittinger <cg@exept.de>
parents: 12090
diff changeset
  1279
!
d98ebd2806ac added: #negated
Claus Gittinger <cg@exept.de>
parents: 12090
diff changeset
  1280
11468
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1281
product
11498
df4f9e10b141 comment
Claus Gittinger <cg@exept.de>
parents: 11489
diff changeset
  1282
    "multiply up all elements."
8858
a35d6c7eeee0 comments
Claus Gittinger <cg@exept.de>
parents: 8833
diff changeset
  1283
11468
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1284
    self emptyCheck.
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1285
    ^ self 
11469
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1286
        inject:(self first class unity)
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1287
        into:[:accum :each | accum * each].
8858
a35d6c7eeee0 comments
Claus Gittinger <cg@exept.de>
parents: 8833
diff changeset
  1288
a35d6c7eeee0 comments
Claus Gittinger <cg@exept.de>
parents: 8833
diff changeset
  1289
    "
11468
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1290
     TestCase should:[ Array new sum ] raise:Error.
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1291
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1292
     TestCase assert:( { 1 } product == 1).
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1293
     TestCase assert:( { 6 } product == 6).
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1294
     TestCase assert:( { 1. 2. 3. 4. 5. } product = 5 factorial )
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1295
    "
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1296
!
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1297
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1298
sum
11498
df4f9e10b141 comment
Claus Gittinger <cg@exept.de>
parents: 11489
diff changeset
  1299
    "sum up all elements; return 0 for an empty collection."
11468
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1300
11489
6009fd847761 sum returns 0 when applied to an empty receiver
Claus Gittinger <cg@exept.de>
parents: 11475
diff changeset
  1301
    self isEmpty ifTrue:[^ 0].
6009fd847761 sum returns 0 when applied to an empty receiver
Claus Gittinger <cg@exept.de>
parents: 11475
diff changeset
  1302
11468
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1303
    ^ self 
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1304
        inject:(self first class zero) 
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1305
        into:[:accum :each | accum + each].
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1306
    
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1307
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1308
    "
11489
6009fd847761 sum returns 0 when applied to an empty receiver
Claus Gittinger <cg@exept.de>
parents: 11475
diff changeset
  1309
     TestCase assert: ( {  } sum = 0 ).
11468
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1310
     TestCase assert: ( { 1 } sum = 1 ).
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1311
     TestCase assert: ( { 1. 2. 3. 4. } sum = 10 ).
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1312
     TestCase assert: ( (1 to:10) sum = 55 ).
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1313
     TestCase assert: ( 'abc' asByteArray sum = 294 ).
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1314
     TestCase assert: ( { 10 +/- 2.
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1315
                          20 +/- 4.
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1316
                         100 +/- 10 } sum = (130 +/- 16) ).
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1317
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1318
     TestCase assert: ( { (1 / 9).
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1319
                          (1 / 7).
1a5264854d15 +product
Claus Gittinger <cg@exept.de>
parents: 11436
diff changeset
  1320
                        } sum = (16 / 63) ).
8858
a35d6c7eeee0 comments
Claus Gittinger <cg@exept.de>
parents: 8833
diff changeset
  1321
    "
11514
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1322
!
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1323
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1324
sum:aBlock
13041
0da3fd916ff7 comment/format in: #sum:
Claus Gittinger <cg@exept.de>
parents: 13040
diff changeset
  1325
    "for each element in the receiver, evaluate the argument, aBlock and sum up the results. 
0da3fd916ff7 comment/format in: #sum:
Claus Gittinger <cg@exept.de>
parents: 13040
diff changeset
  1326
     Return the total sum or 0 for an empty collection.
11514
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1327
     Similar to (self collect...) sum, but avoids creation of an intermediate collection."
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1328
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1329
    |sum|
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1330
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1331
    self do:[:element |
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1332
        |thisValue|
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1333
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1334
        thisValue := aBlock value:element.
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1335
        sum isNil ifTrue:[
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1336
            sum := thisValue
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1337
        ] ifFalse:[
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1338
            sum := sum + thisValue
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1339
        ].
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1340
    ].
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1341
    ^ sum ? 0
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1342
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1343
    "
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1344
     ((1 to:10) collect:[:n | n squared]) sum 
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1345
     ((1 to:10) sum:[:n | n squared])         
2512add96e15 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11498
diff changeset
  1346
    "
13041
0da3fd916ff7 comment/format in: #sum:
Claus Gittinger <cg@exept.de>
parents: 13040
diff changeset
  1347
0da3fd916ff7 comment/format in: #sum:
Claus Gittinger <cg@exept.de>
parents: 13040
diff changeset
  1348
    "Modified: / 23-08-2010 / 18:19:42 / cg"
8858
a35d6c7eeee0 comments
Claus Gittinger <cg@exept.de>
parents: 8833
diff changeset
  1349
! !
a35d6c7eeee0 comments
Claus Gittinger <cg@exept.de>
parents: 8833
diff changeset
  1350
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1351
!Collection methodsFor:'converting'!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1352
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1353
asArray
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1354
    "return a new Array with the collections elements"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1355
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1356
    |anArray 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1357
     index "{ Class: SmallInteger }" |
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1358
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1359
    anArray := Array new:(self size).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1360
    index := 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1361
    self do:[:each |
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  1362
        anArray at:index put:each.
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  1363
        index := index + 1
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1364
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1365
    ^ anArray
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1366
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1367
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1368
asBag
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1369
    "return a new Bag with the receiver collections elements"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1370
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1371
    ^ self addAllTo:(Bag new)
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1372
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1373
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1374
asByteArray
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1375
    "return a new ByteArray with the collections elements
12119
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1376
     (which must convert to 8bit integers in the range 0..255)."
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1377
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1378
    ^ self asIntegerArray:ByteArray
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1379
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1380
5607
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1381
asCollection
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1382
    "return myself as a Collection.
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1383
     I am already a Collection."
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1384
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1385
    ^ self
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1386
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1387
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1388
!
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1389
7906
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7905
diff changeset
  1390
asDictionary
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7905
diff changeset
  1391
    "return a new Dictionary with the receiver collections elements"
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7905
diff changeset
  1392
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7905
diff changeset
  1393
    |d|
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7905
diff changeset
  1394
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7905
diff changeset
  1395
    d := Dictionary new.
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7905
diff changeset
  1396
    self keysAndValuesDo:[:k :v | d at:k put:v].
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7905
diff changeset
  1397
    ^ d
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7905
diff changeset
  1398
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7905
diff changeset
  1399
    "
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7905
diff changeset
  1400
     #(10 20 30 40 50 60 70 80 90) asDictionary
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7905
diff changeset
  1401
    "
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7905
diff changeset
  1402
!
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7905
diff changeset
  1403
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1404
asDoubleArray
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1405
    "return a new DoubleArray with the collections elements
12119
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1406
     (which must convert to 64bit floats)."
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1407
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1408
    ^ self asIntegerArray:DoubleArray
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1409
!
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1410
11412
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  1411
asFlatOrderedCollection
13319
08126c4bdb61 comment/format in: #asFlatOrderedCollection
Claus Gittinger <cg@exept.de>
parents: 13317
diff changeset
  1412
    "return a new ordered collection containing all elements of the receiver
08126c4bdb61 comment/format in: #asFlatOrderedCollection
Claus Gittinger <cg@exept.de>
parents: 13317
diff changeset
  1413
     and recursively of all collectionelements from the receiver"
08126c4bdb61 comment/format in: #asFlatOrderedCollection
Claus Gittinger <cg@exept.de>
parents: 13317
diff changeset
  1414
11412
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  1415
    |coll|
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  1416
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  1417
    coll := OrderedCollection new.
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  1418
    self flatDo:[:el | coll add:el].
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  1419
    ^ coll.
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  1420
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  1421
    "
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  1422
     #(
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  1423
        (1 2 3)
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  1424
        4 5
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  1425
        (6)
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  1426
        7
13319
08126c4bdb61 comment/format in: #asFlatOrderedCollection
Claus Gittinger <cg@exept.de>
parents: 13317
diff changeset
  1427
        (8 (9 10) 11 12 (13 (14 (15) 16)))
08126c4bdb61 comment/format in: #asFlatOrderedCollection
Claus Gittinger <cg@exept.de>
parents: 13317
diff changeset
  1428
     ) asFlatOrderedCollection
11412
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  1429
    "
13319
08126c4bdb61 comment/format in: #asFlatOrderedCollection
Claus Gittinger <cg@exept.de>
parents: 13317
diff changeset
  1430
08126c4bdb61 comment/format in: #asFlatOrderedCollection
Claus Gittinger <cg@exept.de>
parents: 13317
diff changeset
  1431
    "Modified: / 20-03-2011 / 22:02:36 / cg"
11412
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  1432
!
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  1433
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1434
asFloatArray
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1435
    "return a new FloatArray with the collections elements
12119
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1436
     (which must convert to 32bit floats)."
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1437
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1438
    ^ self asIntegerArray:FloatArray
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1439
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1440
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1441
asIdentitySet
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1442
    "return a new IdentitySet with the receiver collections elements"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1443
10795
3797cbc3fcb4 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10750
diff changeset
  1444
    ^ self addAllNonNilElementsTo:(IdentitySet new:self size)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1445
!
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1446
12119
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1447
asIntegerArray
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1448
    "return a new IntegerArray with the collection's elements
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1449
     (which must convert to 32bit integers in the range 0..16rFFFFFFFF)."
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1450
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1451
    ^ self asIntegerArray:IntegerArray
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1452
!
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1453
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1454
asIntegerArray:arrayClass
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1455
    "return a new Array with the collection's elements"
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1456
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1457
    |anIntegerArray 
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1458
     index "{ Class: SmallInteger }" |
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1459
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1460
    anIntegerArray := arrayClass new:(self size).
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1461
    index := 1.
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1462
    self do:[:each |
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1463
        anIntegerArray at:index put:each asInteger.
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1464
        index := index + 1
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1465
    ].
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1466
    ^ anIntegerArray
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1467
!
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1468
2167
d171c8d446a9 added #asList
Claus Gittinger <cg@exept.de>
parents: 2097
diff changeset
  1469
asList
d171c8d446a9 added #asList
Claus Gittinger <cg@exept.de>
parents: 2097
diff changeset
  1470
    "return a new List with the receiver collections elements"
d171c8d446a9 added #asList
Claus Gittinger <cg@exept.de>
parents: 2097
diff changeset
  1471
d171c8d446a9 added #asList
Claus Gittinger <cg@exept.de>
parents: 2097
diff changeset
  1472
    ^ self addAllTo:(List new:self size)
d171c8d446a9 added #asList
Claus Gittinger <cg@exept.de>
parents: 2097
diff changeset
  1473
d171c8d446a9 added #asList
Claus Gittinger <cg@exept.de>
parents: 2097
diff changeset
  1474
    "Created: 14.2.1997 / 16:25:23 / cg"
d171c8d446a9 added #asList
Claus Gittinger <cg@exept.de>
parents: 2097
diff changeset
  1475
!
d171c8d446a9 added #asList
Claus Gittinger <cg@exept.de>
parents: 2097
diff changeset
  1476
8050
11f3819291e3 asLongIntegerArray
Claus Gittinger <cg@exept.de>
parents: 7906
diff changeset
  1477
asLongIntegerArray
11f3819291e3 asLongIntegerArray
Claus Gittinger <cg@exept.de>
parents: 7906
diff changeset
  1478
    "return a new LongIntegerArray with the collections elements
12119
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1479
     (which must convert to 64bit integers in the range 0..16rFFFFFFFFFFFFFFFF)."
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1480
56af0b75bb01 #asIntegerArray:
Claus Gittinger <cg@exept.de>
parents: 12116
diff changeset
  1481
    ^ self asIntegerArray:LongIntegerArray
8050
11f3819291e3 asLongIntegerArray
Claus Gittinger <cg@exept.de>
parents: 7906
diff changeset
  1482
!
11f3819291e3 asLongIntegerArray
Claus Gittinger <cg@exept.de>
parents: 7906
diff changeset
  1483
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1484
asOrderedCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1485
    "return a new OrderedCollection with the receiver collections elements"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1486
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1487
    ^ self addAllTo:(OrderedCollection new:self size)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1488
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1489
11469
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1490
asRunArray
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1491
    "return a new RunArray with the collections elements"
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1492
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1493
    ^ RunArray from:self.
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1494
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1495
"/    |runs lastElement occurrences|
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1496
"/
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1497
"/    runs := RunArray new.
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1498
"/    occurrences := 0.
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1499
"/    self do:[:each |
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1500
"/        each == lastElement ifTrue:[
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1501
"/            occurrences := occurrences + 1
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1502
"/        ] ifFalse:[
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1503
"/            runs add:lastElement withOccurrences:occurrences.
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1504
"/            occurrences := 1.
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1505
"/            lastElement := each
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1506
"/        ].
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1507
"/    ].
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1508
"/    occurrences ~~ 0 ifTrue:[
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1509
"/        runs add:lastElement withOccurrences:occurrences
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1510
"/    ].
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1511
"/    ^ runs
1394
a24350a7ebff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1373
diff changeset
  1512
a24350a7ebff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1373
diff changeset
  1513
    "
11469
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1514
     #(1 2 3 3 3 4 4 4 4 5 6 7) asRunArray 
1394
a24350a7ebff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1373
diff changeset
  1515
    "
11469
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1516
d1344e7b8364 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11468
diff changeset
  1517
    "Modified: / 7.4.1998 / 09:50:54 / cg"
1394
a24350a7ebff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1373
diff changeset
  1518
!
a24350a7ebff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1373
diff changeset
  1519
5607
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1520
asSequenceableCollection
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1521
    "return myself as a SequenceableCollection.
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1522
     I am already a Collection, but not sequenceable."
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1523
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1524
    ^ self asArray
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1525
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1526
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1527
!
94c690ba0dea Define #asCollection, #asSequenceableCollection
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
  1528
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1529
asSet
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1530
    "return a new Set with the receiver collections elements"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1531
10795
3797cbc3fcb4 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10750
diff changeset
  1532
    ^ self addAllNonNilElementsTo:(Set new:self size)
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1533
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1534
9353
2904e771afd8 +asSharedCollection
Claus Gittinger <cg@exept.de>
parents: 9319
diff changeset
  1535
asSharedCollection
2904e771afd8 +asSharedCollection
Claus Gittinger <cg@exept.de>
parents: 9319
diff changeset
  1536
    "return a shared collection on the receiver.
2904e771afd8 +asSharedCollection
Claus Gittinger <cg@exept.de>
parents: 9319
diff changeset
  1537
     This implements synchronized access to me."
2904e771afd8 +asSharedCollection
Claus Gittinger <cg@exept.de>
parents: 9319
diff changeset
  1538
2904e771afd8 +asSharedCollection
Claus Gittinger <cg@exept.de>
parents: 9319
diff changeset
  1539
    ^ SharedCollection for:self.
2904e771afd8 +asSharedCollection
Claus Gittinger <cg@exept.de>
parents: 9319
diff changeset
  1540
!
2904e771afd8 +asSharedCollection
Claus Gittinger <cg@exept.de>
parents: 9319
diff changeset
  1541
13773
8de2745d8a24 added: #asSignedIntegerArray
Claus Gittinger <cg@exept.de>
parents: 13741
diff changeset
  1542
asSignedIntegerArray
8de2745d8a24 added: #asSignedIntegerArray
Claus Gittinger <cg@exept.de>
parents: 13741
diff changeset
  1543
    "return a new SignedIntegerArray with the collection's elements
8de2745d8a24 added: #asSignedIntegerArray
Claus Gittinger <cg@exept.de>
parents: 13741
diff changeset
  1544
     (which must convert to 32bit signed integers in the range -16r80000000..16r7FFFFFFF)."
8de2745d8a24 added: #asSignedIntegerArray
Claus Gittinger <cg@exept.de>
parents: 13741
diff changeset
  1545
8de2745d8a24 added: #asSignedIntegerArray
Claus Gittinger <cg@exept.de>
parents: 13741
diff changeset
  1546
    ^ self asIntegerArray:SignedIntegerArray
8de2745d8a24 added: #asSignedIntegerArray
Claus Gittinger <cg@exept.de>
parents: 13741
diff changeset
  1547
8de2745d8a24 added: #asSignedIntegerArray
Claus Gittinger <cg@exept.de>
parents: 13741
diff changeset
  1548
    "Created: / 07-10-2011 / 13:14:01 / cg"
8de2745d8a24 added: #asSignedIntegerArray
Claus Gittinger <cg@exept.de>
parents: 13741
diff changeset
  1549
!
8de2745d8a24 added: #asSignedIntegerArray
Claus Gittinger <cg@exept.de>
parents: 13741
diff changeset
  1550
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1551
asSortedCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1552
    "return a new SortedCollection with the receiver collections elements"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1553
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1554
    |aSortedCollection|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1555
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1556
    aSortedCollection := SortedCollection new:self size.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1557
    aSortedCollection addAll:self.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1558
    ^ aSortedCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1559
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1560
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1561
asSortedCollection:sortBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1562
    "return a new SortedCollection with the receiver collections elements,
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1563
     using sortBlock for comparing"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1564
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1565
    |aSortedCollection|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1566
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1567
    aSortedCollection := SortedCollection sortBlock:sortBlock.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1568
    aSortedCollection addAll:self.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1569
    ^ aSortedCollection
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1570
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1571
2919
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1572
asSortedStrings
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1573
    "Create & return a SortedCollection that sorts the receivers
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1574
     elements according to the locales collating policy.
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1575
     This is currently not really support - strings are sorted
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1576
     without caring for the locale."
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1577
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1578
    |aSortedCollection|
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1579
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1580
    aSortedCollection := SortedCollection forStrings:self size.
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1581
    aSortedCollection addAll:self.
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1582
    ^ aSortedCollection
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1583
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1584
    "Created: 13.9.1997 / 09:36:22 / cg"
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1585
    "Modified: 13.9.1997 / 09:43:00 / cg"
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1586
!
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1587
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1588
asSortedStrings:sortBlock
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1589
    "Create & return a SortedCollection that sorts the receivers
3061
d42eeace4adf commentary
Claus Gittinger <cg@exept.de>
parents: 2919
diff changeset
  1590
     elements using sortBlock and according to the locales collating policy,
d42eeace4adf commentary
Claus Gittinger <cg@exept.de>
parents: 2919
diff changeset
  1591
     which is passed as first arg to sortBlock.
2919
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1592
     This is currently not really support - strings are sorted
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1593
     without caring for the locale."
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1594
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1595
    |aSortedCollection|
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1596
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1597
    aSortedCollection := SortedCollection forStrings:self size.
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1598
    aSortedCollection sortBlock:sortBlock.
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1599
    aSortedCollection addAll:self.
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1600
    ^ aSortedCollection
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1601
3061
d42eeace4adf commentary
Claus Gittinger <cg@exept.de>
parents: 2919
diff changeset
  1602
    "Created: / 13.9.1997 / 09:36:45 / cg"
d42eeace4adf commentary
Claus Gittinger <cg@exept.de>
parents: 2919
diff changeset
  1603
    "Modified: / 27.10.1997 / 16:39:48 / cg"
2919
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1604
!
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1605
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1606
asSortedStrings:sortBlock with:aCollationPolicy
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1607
    "Create & return a SortedCollection that sorts the receivers
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1608
     elements using sortBlock and according to the specified locales collating policy.
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1609
     This is currently not really support - strings are sorted
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1610
     without caring for the locale."
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1611
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1612
    |aSortedCollection|
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1613
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1614
    aSortedCollection := SortedCollection forStrings:self size collatedBy:aCollationPolicy.
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1615
    aSortedCollection sortBlock:sortBlock.
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1616
    aSortedCollection addAll:self.
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1617
    ^ aSortedCollection
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1618
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1619
    "Created: 13.9.1997 / 09:37:21 / cg"
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1620
    "Modified: 13.9.1997 / 09:45:27 / cg"
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1621
!
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1622
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1623
asSortedStringsWith: aCollationPolicy
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1624
    "Create & return a SortedCollection that sorts the receivers
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1625
     elements according to the specified locales collating policy.
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1626
     This is currently not really support - strings are sorted
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1627
     without caring for the locale."
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1628
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1629
    |aSortedCollection|
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1630
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1631
    aSortedCollection := SortedCollection forStrings:self size collatedBy:aCollationPolicy.
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1632
    aSortedCollection addAll:self.
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1633
    ^ aSortedCollection
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1634
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1635
    "Created: 13.9.1997 / 09:37:50 / cg"
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1636
    "Modified: 13.9.1997 / 09:44:08 / cg"
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1637
!
6bb9f0bcb6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
  1638
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1639
asString
11708
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1640
    "return a String with the collection's elements 
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1641
     (which must convert to characters)"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1642
11708
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1643
    |string 
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1644
     index "{ Class: SmallInteger }" 
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1645
     char bitsPerCharacter|
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1646
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1647
    string := String new:(self size).
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1648
    bitsPerCharacter := string bitsPerCharacter.
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1649
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1650
    index := 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1651
    self do:[:each |
11708
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1652
        char := each asCharacter.
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1653
        char bitsPerCharacter > bitsPerCharacter ifTrue:[
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1654
            char bitsPerCharacter == 16 ifTrue:[
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1655
                string := Unicode16String fromString:string.
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1656
            ] ifFalse:[
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1657
                string := Unicode32String fromString:string.
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1658
            ].
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1659
        ].
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1660
        string at:index put:char.
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  1661
        index := index + 1
360
claus
parents: 348
diff changeset
  1662
    ].
11708
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1663
    ^ string
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1664
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1665
    "
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1666
     #(80 81 82) asString
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1667
     #(16r8000 16r8001 16r8002) asString
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1668
     #(16r800000 16r800001 16r800002) asString
43d1d6cf1ba3 fixed asString for non-8-bit characters
Claus Gittinger <cg@exept.de>
parents: 11706
diff changeset
  1669
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1670
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1671
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1672
asStringCollection
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  1673
    "return a new string collection containing the elements;
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  1674
     these ought to be strings. (i.e. String or Text instances)"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1675
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1676
    ^ self addAllTo:(StringCollection new)
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  1677
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  1678
    "Modified: 18.5.1996 / 13:54:34 / cg"
360
claus
parents: 348
diff changeset
  1679
!
claus
parents: 348
diff changeset
  1680
8160
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1681
asUnicodeString
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1682
    "return a String with the collections elements 
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1683
     (which must convert to characters)"
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1684
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1685
    |aString 
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1686
     index "{ Class: SmallInteger }" |
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1687
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1688
    aString := UnicodeString uninitializedNew:self size.
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1689
    index := 1.
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1690
    self do:[:each |
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1691
        aString at:index put:each asCharacter.
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1692
        index := index + 1
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1693
    ].
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1694
    ^ aString
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1695
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1696
    "
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1697
      #(16r440 16r443 16r441 16r441 16r43A 16r438 16r439 16r20 16r44F 16r437 16r44B 16r43A) asUnicodeString
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1698
    "
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1699
!
edc2ce054585 Define #asUnicodeString.
Stefan Vogel <sv@exept.de>
parents: 8140
diff changeset
  1700
7885
e206ad1767bd *** empty log message ***
ca
parents: 7821
diff changeset
  1701
asWordArray
e206ad1767bd *** empty log message ***
ca
parents: 7821
diff changeset
  1702
    "return a new WordArray with the collections elements
e206ad1767bd *** empty log message ***
ca
parents: 7821
diff changeset
  1703
     (which must convert to integers in the range 0..16rFFFF)."
e206ad1767bd *** empty log message ***
ca
parents: 7821
diff changeset
  1704
e206ad1767bd *** empty log message ***
ca
parents: 7821
diff changeset
  1705
    |aWordArray 
e206ad1767bd *** empty log message ***
ca
parents: 7821
diff changeset
  1706
     index "{ Class: SmallInteger }" |
e206ad1767bd *** empty log message ***
ca
parents: 7821
diff changeset
  1707
e206ad1767bd *** empty log message ***
ca
parents: 7821
diff changeset
  1708
    aWordArray := WordArray new:(self size).
e206ad1767bd *** empty log message ***
ca
parents: 7821
diff changeset
  1709
    index := 1.
e206ad1767bd *** empty log message ***
ca
parents: 7821
diff changeset
  1710
    self do:[:each |
e206ad1767bd *** empty log message ***
ca
parents: 7821
diff changeset
  1711
        aWordArray at:index put:each asInteger.
e206ad1767bd *** empty log message ***
ca
parents: 7821
diff changeset
  1712
        index := index + 1
e206ad1767bd *** empty log message ***
ca
parents: 7821
diff changeset
  1713
    ].
e206ad1767bd *** empty log message ***
ca
parents: 7821
diff changeset
  1714
    ^ aWordArray
e206ad1767bd *** empty log message ***
ca
parents: 7821
diff changeset
  1715
!
e206ad1767bd *** empty log message ***
ca
parents: 7821
diff changeset
  1716
12291
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1717
copyAs:collectionClass
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1718
    "return a new instance of collectionClass with the receiver collection's elements.
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1719
     This is similar to copy as:collectionClass, to ensure that we get a new
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1720
     (unshared) collection, but avoids the copy if the receiver is not already an   
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1721
     instance of collectionClass."
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1722
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1723
    |newColl|
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1724
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1725
    newColl := self as:collectionClass.
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1726
    newColl == self ifTrue:[
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1727
        ^ self copy
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1728
    ].
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1729
    ^ newColl.
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1730
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1731
    "
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1732
     |coll1 coll2|
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1733
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1734
     coll1 := #(1 2 3 4 5). 
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1735
     coll2 := coll1 copyAs:Array.                   '-- will generate a copy'.
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1736
     self assert:(coll1 ~~ coll2).
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1737
     self assert:(coll1 = coll2).
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1738
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1739
     coll1 := #(1 2 3 4 5). 
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1740
     coll2 := coll1 copyAs:OrderedCollection.       '-- will generate an OC'.
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1741
     self assert:(coll1 ~~ coll2).
12292
5d5c2bc66cc0 comment/format in: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12291
diff changeset
  1742
     self assert:(coll1 isSameSequenceAs: coll2).
12291
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1743
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1744
     coll1 := #(1 2 3 4 5) asOrderedCollection.
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1745
     coll2 := coll1 copyAs:OrderedCollection.       '-- will generate a copy'.
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1746
     self assert:(coll1 ~~ coll2).
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1747
     self assert:(coll1 = coll2).
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1748
    "
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1749
!
2e04d37a8bb5 added: #copyAs:
Claus Gittinger <cg@exept.de>
parents: 12249
diff changeset
  1750
12249
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
  1751
copyAsOrderedCollection
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
  1752
    "return a new OrderedCollection with the receiver collection's elements.
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
  1753
     This is similar to copy asOrderedCollection, to ensure that we get a new
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
  1754
     (unshared) collection, but avoids the copy if the receiver is not already an   
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
  1755
     OrderedCollection."
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
  1756
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
  1757
    |newColl|
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
  1758
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
  1759
    newColl := self asOrderedCollection.
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
  1760
    newColl == self ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
  1761
        ^ self copy
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
  1762
    ].
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
  1763
    ^ newColl.
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
  1764
!
Claus Gittinger <cg@exept.de>
parents: 12119
diff changeset
  1765
7905
35025dc2fe87 +keysAndValues
Claus Gittinger <cg@exept.de>
parents: 7885
diff changeset
  1766
keysAndValues
35025dc2fe87 +keysAndValues
Claus Gittinger <cg@exept.de>
parents: 7885
diff changeset
  1767
    |assocs|
35025dc2fe87 +keysAndValues
Claus Gittinger <cg@exept.de>
parents: 7885
diff changeset
  1768
35025dc2fe87 +keysAndValues
Claus Gittinger <cg@exept.de>
parents: 7885
diff changeset
  1769
    assocs := OrderedCollection new.
35025dc2fe87 +keysAndValues
Claus Gittinger <cg@exept.de>
parents: 7885
diff changeset
  1770
    self keysAndValuesDo:[:k :v |
35025dc2fe87 +keysAndValues
Claus Gittinger <cg@exept.de>
parents: 7885
diff changeset
  1771
        assocs add:(k -> v).
35025dc2fe87 +keysAndValues
Claus Gittinger <cg@exept.de>
parents: 7885
diff changeset
  1772
    ].
35025dc2fe87 +keysAndValues
Claus Gittinger <cg@exept.de>
parents: 7885
diff changeset
  1773
    ^ assocs.
35025dc2fe87 +keysAndValues
Claus Gittinger <cg@exept.de>
parents: 7885
diff changeset
  1774
35025dc2fe87 +keysAndValues
Claus Gittinger <cg@exept.de>
parents: 7885
diff changeset
  1775
    "
35025dc2fe87 +keysAndValues
Claus Gittinger <cg@exept.de>
parents: 7885
diff changeset
  1776
     #(10 20 30 40 50 60) keysAndValues
35025dc2fe87 +keysAndValues
Claus Gittinger <cg@exept.de>
parents: 7885
diff changeset
  1777
    "
35025dc2fe87 +keysAndValues
Claus Gittinger <cg@exept.de>
parents: 7885
diff changeset
  1778
!
35025dc2fe87 +keysAndValues
Claus Gittinger <cg@exept.de>
parents: 7885
diff changeset
  1779
9410
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1780
literalArrayEncoding
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1781
    "encode myself as an array literal, from which a copy of the receiver
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1782
     can be reconstructed with #decodeAsLiteralArray."
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1783
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1784
    |encoding idx|
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1785
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1786
    encoding := Array new:self size + 1.
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1787
    encoding at:1 put:self class name.
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1788
    idx := 2.
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1789
    self do:[:element|
11315
9a6ca3147b69 #showWhereWeCameFrom - show more stack backtrace
Stefan Vogel <sv@exept.de>
parents: 11309
diff changeset
  1790
        encoding at:idx put:element literalArrayEncoding.
9a6ca3147b69 #showWhereWeCameFrom - show more stack backtrace
Stefan Vogel <sv@exept.de>
parents: 11309
diff changeset
  1791
        idx := idx + 1.
9410
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1792
    ].
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1793
    ^ encoding
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1794
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1795
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1796
    "
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1797
     (Array with:(Color red:50 green:50 blue:50)
11315
9a6ca3147b69 #showWhereWeCameFrom - show more stack backtrace
Stefan Vogel <sv@exept.de>
parents: 11309
diff changeset
  1798
            with:(1 @ 2)
9410
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1799
     ) literalArrayEncoding decodeAsLiteralArray
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1800
    "
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1801
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1802
    "Modified: 22.4.1996 / 13:00:56 / cg"
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1803
!
4baf189ccf3d Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9404
diff changeset
  1804
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1805
readStream
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1806
    "return a stream for reading from the receiver"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1807
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1808
    ^ ReadStream on:self
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
  1809
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
  1810
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1811
     |s|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1812
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1813
     s := 'hello world' readStream.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1814
     s next:5.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1815
     s next.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1816
     (s next:5) inspect
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
  1817
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1818
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1819
8140
7cc7ac5f29ca Define #xxxStreamOrNil methods.
Stefan Vogel <sv@exept.de>
parents: 8050
diff changeset
  1820
readStreamOrNil
7cc7ac5f29ca Define #xxxStreamOrNil methods.
Stefan Vogel <sv@exept.de>
parents: 8050
diff changeset
  1821
    "return a stream for reading from the receiver.
7cc7ac5f29ca Define #xxxStreamOrNil methods.
Stefan Vogel <sv@exept.de>
parents: 8050
diff changeset
  1822
     This has been defined for protocol compatibility with FileName,
7cc7ac5f29ca Define #xxxStreamOrNil methods.
Stefan Vogel <sv@exept.de>
parents: 8050
diff changeset
  1823
     but nil is never returned here"
7cc7ac5f29ca Define #xxxStreamOrNil methods.
Stefan Vogel <sv@exept.de>
parents: 8050
diff changeset
  1824
7cc7ac5f29ca Define #xxxStreamOrNil methods.
Stefan Vogel <sv@exept.de>
parents: 8050
diff changeset
  1825
    ^ self readStream
7cc7ac5f29ca Define #xxxStreamOrNil methods.
Stefan Vogel <sv@exept.de>
parents: 8050
diff changeset
  1826
!
7cc7ac5f29ca Define #xxxStreamOrNil methods.
Stefan Vogel <sv@exept.de>
parents: 8050
diff changeset
  1827
8631
a839f7beebe4 added selector readWriteStream
penk
parents: 8609
diff changeset
  1828
readWriteStream
a839f7beebe4 added selector readWriteStream
penk
parents: 8609
diff changeset
  1829
    "return a stream for reading and writing from/to the receiver"
a839f7beebe4 added selector readWriteStream
penk
parents: 8609
diff changeset
  1830
a839f7beebe4 added selector readWriteStream
penk
parents: 8609
diff changeset
  1831
    ^ ReadWriteStream with:self
a839f7beebe4 added selector readWriteStream
penk
parents: 8609
diff changeset
  1832
a839f7beebe4 added selector readWriteStream
penk
parents: 8609
diff changeset
  1833
    "
11436
8b542c2a5a9d examples
Stefan Vogel <sv@exept.de>
parents: 11412
diff changeset
  1834
     'hello world' readWriteStream
8b542c2a5a9d examples
Stefan Vogel <sv@exept.de>
parents: 11412
diff changeset
  1835
        nextPutAll:'+Foo';
8b542c2a5a9d examples
Stefan Vogel <sv@exept.de>
parents: 11412
diff changeset
  1836
        contents
8b542c2a5a9d examples
Stefan Vogel <sv@exept.de>
parents: 11412
diff changeset
  1837
8b542c2a5a9d examples
Stefan Vogel <sv@exept.de>
parents: 11412
diff changeset
  1838
     'hello world' readWriteStream
8b542c2a5a9d examples
Stefan Vogel <sv@exept.de>
parents: 11412
diff changeset
  1839
        setToEnd;
8b542c2a5a9d examples
Stefan Vogel <sv@exept.de>
parents: 11412
diff changeset
  1840
        nextPutAll:'+Foo';
8b542c2a5a9d examples
Stefan Vogel <sv@exept.de>
parents: 11412
diff changeset
  1841
        contents
8631
a839f7beebe4 added selector readWriteStream
penk
parents: 8609
diff changeset
  1842
    "
a839f7beebe4 added selector readWriteStream
penk
parents: 8609
diff changeset
  1843
!
a839f7beebe4 added selector readWriteStream
penk
parents: 8609
diff changeset
  1844
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1845
writeStream
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1846
    "return a stream for writing onto the receiver"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1847
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1848
    ^ WriteStream on:self
2
claus
parents: 1
diff changeset
  1849
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1850
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1851
     |s|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1852
11315
9a6ca3147b69 #showWhereWeCameFrom - show more stack backtrace
Stefan Vogel <sv@exept.de>
parents: 11309
diff changeset
  1853
     s := #() writeStream.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1854
     s nextPut:1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1855
     s nextPut:2.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1856
     s nextPut:3.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1857
     s contents inspect
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1858
    "
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
  1859
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
  1860
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1861
     |s|
2
claus
parents: 1
diff changeset
  1862
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1863
     s := OrderedCollection new writeStream.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1864
     s nextPut:1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1865
     s nextPut:2.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1866
     s nextPut:3.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1867
     s contents inspect
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1868
    "
8140
7cc7ac5f29ca Define #xxxStreamOrNil methods.
Stefan Vogel <sv@exept.de>
parents: 8050
diff changeset
  1869
!
7cc7ac5f29ca Define #xxxStreamOrNil methods.
Stefan Vogel <sv@exept.de>
parents: 8050
diff changeset
  1870
7cc7ac5f29ca Define #xxxStreamOrNil methods.
Stefan Vogel <sv@exept.de>
parents: 8050
diff changeset
  1871
writeStreamOrNil
7cc7ac5f29ca Define #xxxStreamOrNil methods.
Stefan Vogel <sv@exept.de>
parents: 8050
diff changeset
  1872
    "return a stream for writing onto the receiver.
7cc7ac5f29ca Define #xxxStreamOrNil methods.
Stefan Vogel <sv@exept.de>
parents: 8050
diff changeset
  1873
     This has been defined for protocol compatibility with FileName,
7cc7ac5f29ca Define #xxxStreamOrNil methods.
Stefan Vogel <sv@exept.de>
parents: 8050
diff changeset
  1874
     but nil is never returned here"
7cc7ac5f29ca Define #xxxStreamOrNil methods.
Stefan Vogel <sv@exept.de>
parents: 8050
diff changeset
  1875
7cc7ac5f29ca Define #xxxStreamOrNil methods.
Stefan Vogel <sv@exept.de>
parents: 8050
diff changeset
  1876
    ^ self writeStream
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1877
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1878
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1879
!Collection methodsFor:'copying'!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1880
3381
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1881
copy
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1882
    "return a copy of the receiver.
7168
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  1883
     Redefined to pass the original as argument to the postCopyFrom method."
3381
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1884
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1885
    ^ self shallowCopy postCopyFrom:self
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1886
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1887
    "Created: / 19.4.1998 / 20:02:53 / cg"
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1888
!
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1889
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1890
copyEmpty
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1891
    "return a copy of the receiver with no elements.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1892
     This is used by copying and enumeration methods
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1893
     to get a new instance which is similar to the receiver."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1894
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1895
    ^ self species new
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1896
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1897
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1898
copyEmpty:size
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1899
    "return a copy of the receiver with no elements, but space for
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1900
     size elements. This is used by copying and enumeration methods
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1901
     to get a new instance which is similar to the receiver.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1902
     This method should be redefined in subclasses with instance
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1903
     variables, which should be put into the copy too.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1904
     For example, SortedCollection has to copy its sortBlock into the
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1905
     new collection."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1906
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1907
    ^ self species new:size
360
claus
parents: 348
diff changeset
  1908
!
claus
parents: 348
diff changeset
  1909
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1910
copyEmptyAndGrow:size
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1911
    "return a copy of the receiver with size nil elements.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1912
     This is used by copying and enumeration methods
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1913
     to get a new instance which is similar to the receiver."
155
edd7fc34e104 *** empty log message ***
claus
parents: 140
diff changeset
  1914
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1915
    ^ (self copyEmpty:size) grow:size
3381
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1916
!
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1917
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1918
postCopyFrom:original
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1919
    "sent to a freshly copied object to give it a chance to adjust things.
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1920
     Notice, that for Sets/Dicts etc. a rehash is not needed, since the copy
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1921
     will have the same hash key as the receiver (as long as ST/X provides the 
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1922
     setHash: functionality)."
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1923
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1924
    "for ST-80 compatibility, we try postCopy here ..."
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1925
    ^ self postCopy
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1926
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1927
    "Created: / 19.4.1998 / 19:59:42 / cg"
e1c12fa92fbf moved #postCopyFrom: from object; redefined copy to send this instead
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
  1928
    "Modified: / 19.4.1998 / 20:03:57 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1929
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1930
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1931
!Collection methodsFor:'enumerating'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1932
10795
3797cbc3fcb4 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10750
diff changeset
  1933
addAllNonNilElementsTo:aCollection
3797cbc3fcb4 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10750
diff changeset
  1934
    "add all nonNil elements of the receiver to aCollection.
3797cbc3fcb4 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10750
diff changeset
  1935
     Return aCollection."
3797cbc3fcb4 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10750
diff changeset
  1936
3797cbc3fcb4 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10750
diff changeset
  1937
    self do:[:each | each notNil ifTrue:[aCollection add:each]].
3797cbc3fcb4 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10750
diff changeset
  1938
    ^ aCollection
3797cbc3fcb4 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10750
diff changeset
  1939
3797cbc3fcb4 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10750
diff changeset
  1940
    "
3797cbc3fcb4 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10750
diff changeset
  1941
     #(1 2 3 4 5 1 2 3 4 5 nil) asOrderedCollection addAllNonNilElementsTo:Set new
3797cbc3fcb4 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10750
diff changeset
  1942
    "
3797cbc3fcb4 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10750
diff changeset
  1943
!
3797cbc3fcb4 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10750
diff changeset
  1944
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1945
addAllTo:aCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1946
    "add all elements of the receiver, to aCollection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1947
     Return aCollection."
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1948
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1949
    self do:[:each | aCollection add:each].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1950
    ^ aCollection
5254
f92e89d288bc comments
Claus Gittinger <cg@exept.de>
parents: 5207
diff changeset
  1951
f92e89d288bc comments
Claus Gittinger <cg@exept.de>
parents: 5207
diff changeset
  1952
    "
f92e89d288bc comments
Claus Gittinger <cg@exept.de>
parents: 5207
diff changeset
  1953
     #(1 2 3 4 5 1 2 3 4 5) addAllTo:Set new
f92e89d288bc comments
Claus Gittinger <cg@exept.de>
parents: 5207
diff changeset
  1954
    "
f92e89d288bc comments
Claus Gittinger <cg@exept.de>
parents: 5207
diff changeset
  1955
f92e89d288bc comments
Claus Gittinger <cg@exept.de>
parents: 5207
diff changeset
  1956
    "Modified: / 11.2.2000 / 11:22:14 / cg"
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1957
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1958
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1959
collect:aBlock
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1960
    "for each element in the receiver, evaluate the argument, aBlock
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1961
     and return a new collection with the results"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1962
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1963
    |newCollection|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1964
201
1deff0d47f37 changed copyEmpty scheme
claus
parents: 169
diff changeset
  1965
    newCollection := self species new.
1deff0d47f37 changed copyEmpty scheme
claus
parents: 169
diff changeset
  1966
    self do:[:element | newCollection add:(aBlock value:element)].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1967
    ^ newCollection
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1968
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1969
    "
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1970
     #(1 2 3 4) collect:[:n | n * 2]  
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1971
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1972
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1973
11871
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  1974
collect:aBlock as:aClass
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  1975
    "like collect, but use an instance of aClass to collect the results.
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  1976
     Also avoids the need for an extra intermediate collection which is created with
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  1977
     the standard coding: 'self asXXXX collect:[...]"
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  1978
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  1979
    |newCollection
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  1980
     idx  "{ Class:SmallInteger }"
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  1981
     sz  "{ Class:SmallInteger }"|
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  1982
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  1983
    sz := self size.
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  1984
    newCollection := (aClass new:sz) grow:sz.
12008
89ac90abce9b changed: #collect:as:
Claus Gittinger <cg@exept.de>
parents: 11928
diff changeset
  1985
    newCollection isSequenceable ifTrue:[
89ac90abce9b changed: #collect:as:
Claus Gittinger <cg@exept.de>
parents: 11928
diff changeset
  1986
        idx := 1.
89ac90abce9b changed: #collect:as:
Claus Gittinger <cg@exept.de>
parents: 11928
diff changeset
  1987
        self do:[:el |
89ac90abce9b changed: #collect:as:
Claus Gittinger <cg@exept.de>
parents: 11928
diff changeset
  1988
            newCollection at:idx put:(aBlock value:el).
89ac90abce9b changed: #collect:as:
Claus Gittinger <cg@exept.de>
parents: 11928
diff changeset
  1989
            idx := idx + 1.
89ac90abce9b changed: #collect:as:
Claus Gittinger <cg@exept.de>
parents: 11928
diff changeset
  1990
        ].
89ac90abce9b changed: #collect:as:
Claus Gittinger <cg@exept.de>
parents: 11928
diff changeset
  1991
    ] ifFalse:[
89ac90abce9b changed: #collect:as:
Claus Gittinger <cg@exept.de>
parents: 11928
diff changeset
  1992
        self do:[:el |
89ac90abce9b changed: #collect:as:
Claus Gittinger <cg@exept.de>
parents: 11928
diff changeset
  1993
            newCollection add:(aBlock value:el).
89ac90abce9b changed: #collect:as:
Claus Gittinger <cg@exept.de>
parents: 11928
diff changeset
  1994
        ].
11871
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  1995
    ].
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  1996
    ^ newCollection
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  1997
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  1998
    "
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  1999
     #(one two three four five six) collect:[:element | element asUppercase] as:OrderedCollection
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  2000
     'abcdef' collect:[:char | char digitValue] as:ByteArray
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  2001
    "
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  2002
!
291e7089ace5 +collect:as:
Claus Gittinger <cg@exept.de>
parents: 11708
diff changeset
  2003
14027
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2004
collect:collectBlock thenDo:aBlock
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2005
    "combination of collect followed by do.
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2006
     Avoids the creation of intermediate garbage"
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2007
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2008
    self do:[:each | aBlock value:(collectBlock value:each)]
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2009
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2010
    "
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2011
     #(1 2 3 4 5 6 7) collect:[:i | i * 2] thenDo:[:i | Transcript showCR:i ]
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2012
    "
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2013
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2014
    "Created: / 28-02-2012 / 21:05:16 / cg"
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2015
!
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2016
11928
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2017
collect:collectBlock thenReject:rejectBlock
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2018
    "combination of collect followed by reject.
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2019
     May be redefined by some subclasses for optimal performance
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2020
     (avoiding the creation of intermediate garbage)"
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2021
12943
85c58cb22c32 changed: #collect:thenReject:
Claus Gittinger <cg@exept.de>
parents: 12666
diff changeset
  2022
    ^ self collect:collectBlock thenSelect:[:el | (rejectBlock value:el) not]
11928
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2023
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2024
    "
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2025
     #(1 2 3 4 5 6 7) collect:[:i | i * 2] thenReject:[:i | i > 10]
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2026
    "
12943
85c58cb22c32 changed: #collect:thenReject:
Claus Gittinger <cg@exept.de>
parents: 12666
diff changeset
  2027
85c58cb22c32 changed: #collect:thenReject:
Claus Gittinger <cg@exept.de>
parents: 12666
diff changeset
  2028
    "Modified: / 11-07-2010 / 17:03:16 / cg"
11928
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2029
!
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2030
4890
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4856
diff changeset
  2031
collect:collectBlock thenSelect:selectBlock
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4856
diff changeset
  2032
    "combination of collect followed by select.
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4856
diff changeset
  2033
     May be redefined by some subclasses for optimal performance
7164
5cdefa506c0e comment
Claus Gittinger <cg@exept.de>
parents: 7144
diff changeset
  2034
     (avoiding the creation of intermediate garbage)"
4890
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4856
diff changeset
  2035
4892
694903566445 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  2036
    ^ (self collect:collectBlock) select:selectBlock
694903566445 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  2037
694903566445 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  2038
    "
694903566445 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  2039
     #(1 2 3 4 5 6 7) collect:[:i | i * 2] thenSelect:[:i | i < 10]
694903566445 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  2040
    "
4890
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4856
diff changeset
  2041
!
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4856
diff changeset
  2042
6867
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2043
collectAll:aBlock
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2044
    "for each element in the receiver, evaluate the argument, aBlock.
9315
9ba4c87a127b comment
Claus Gittinger <cg@exept.de>
parents: 9309
diff changeset
  2045
     The block is supposed to return a collection, whose elements are collected.
8608
932c25ca08a7 comments
Claus Gittinger <cg@exept.de>
parents: 8607
diff changeset
  2046
     The species of the returned collection is that of the first returned
932c25ca08a7 comments
Claus Gittinger <cg@exept.de>
parents: 8607
diff changeset
  2047
     partial result."
6867
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2048
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2049
    |result|
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2050
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2051
    self do:[:element | 
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2052
        |individualResult|
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2053
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2054
        individualResult := aBlock value:element.
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2055
        result isNil ifTrue:[
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2056
            result := individualResult speciesForAdding new.
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2057
        ].
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2058
        result addAll:individualResult.
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2059
    ].
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2060
8609
daa0d6682135 collectAll: now returns an empty collection if
Claus Gittinger <cg@exept.de>
parents: 8608
diff changeset
  2061
    ^ result ? #()
6867
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2062
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2063
    "
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2064
     #(1 2 3 4) collectAll:[:n | Array new:n withAll:n ]  
7629
8a8952dc3ad4 comment
Claus Gittinger <cg@exept.de>
parents: 7454
diff changeset
  2065
     #(1 2 3 4) collectAll:[:n | Array with:n with:n squared ]   
8607
7dd4ddf76dcb comments
Claus Gittinger <cg@exept.de>
parents: 8606
diff changeset
  2066
     #(1 2 3 4) collectAll:[:n | 1 to:n ]      
7dd4ddf76dcb comments
Claus Gittinger <cg@exept.de>
parents: 8606
diff changeset
  2067
     (Array with:Point with:Rectangle) collectAll:[:c | c instVarNames ]      
7629
8a8952dc3ad4 comment
Claus Gittinger <cg@exept.de>
parents: 7454
diff changeset
  2068
    "
6867
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2069
!
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  2070
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2071
count:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2072
    "count elements, for which aBlock returns true.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2073
     Return the sum."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2074
7336
6c42f4f6d291 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2075
    |count|
6c42f4f6d291 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2076
6c42f4f6d291 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2077
    count := 0.
6c42f4f6d291 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2078
    self do:[:element |
6c42f4f6d291 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2079
        (aBlock value:element) ifTrue:[count := count + 1]
6c42f4f6d291 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2080
    ].
6c42f4f6d291 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2081
    ^ count
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2082
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2083
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2084
     #(1 2 3 4 6 8 10) count:[:a | a even]     
7336
6c42f4f6d291 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2085
     #(1 nil nil nil 2 3 nil 4 5) count:[:a | a isNil]   
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2086
    "
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2087
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2088
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2089
detect:aBlock
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2090
    "evaluate the argument, aBlock for each element in the receiver until
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2091
     the block returns true; in this case return the element which caused
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2092
     the true evaluation.
345
claus
parents: 342
diff changeset
  2093
     If none of the evaluations returns true, report an error"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2094
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2095
    ^ self detect:aBlock ifNone:[self errorNotFound]
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2096
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2097
    "
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2098
     #(1 2 3 4) detect:[:n | n odd]   
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2099
     #(2 4 6 8) detect:[:n | n odd]  
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2100
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2101
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2102
8750
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2103
detect:generatorBlock forWhich:testBlock ifNone:exceptionBlock
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2104
    "evaluate generatorBlock for each element in the receiver until
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2105
     testBlock returns true for it; 
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2106
     in this case return the value from generatorBlock, which caused the true evaluation.
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2107
     If none of the test evaluations returns true, return the result of the
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2108
     evaluation of the exceptionBlock"
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2109
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2110
    self do:[:each |
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2111
        |val|
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2112
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2113
        val := generatorBlock value:each.
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2114
        (testBlock value:val) ifTrue:[^ val].
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2115
    ].
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2116
    ^ exceptionBlock value
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2117
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2118
    "
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2119
     #(2 3 4) detect:[:n | n squared] forWhich:[:nsq | nsq odd] ifNone:['sorry']    
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2120
     #( 2 4 ) detect:[:n | n squared] forWhich:[:nsq | nsq odd] ifNone:['sorry']    
8751
69c32d8bd4b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8750
diff changeset
  2121
69c32d8bd4b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8750
diff changeset
  2122
     #( 'st' 'c' 'java' ) 
69c32d8bd4b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8750
diff changeset
  2123
        detect:[:ext | 'Foo' asFilename withSuffix:ext]
69c32d8bd4b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8750
diff changeset
  2124
        forWhich:[:fn | fn exists]
69c32d8bd4b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8750
diff changeset
  2125
        ifNone:nil    
8750
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2126
    "
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2127
!
43e35e0361d9 +detect:forWhich:ifNone:
Claus Gittinger <cg@exept.de>
parents: 8662
diff changeset
  2128
9842
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2129
detect:aOneArgBlock ifNone:exceptionBlock
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2130
    "evaluate the argument, aBlock for each element in the receiver until
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2131
     the block returns true; in this case return the element which caused
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2132
     the true evaluation.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2133
     If none of the evaluations returns true, return the result of the
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2134
     evaluation of the exceptionBlock"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2135
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2136
    self do:[:each | 
9842
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2137
        (aOneArgBlock value:each) ifTrue:[^ each].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2138
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2139
    ^ exceptionBlock value
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2140
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2141
    "
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2142
     #(1 2 3 4) detect:[:n | n odd] ifNone:['sorry']    
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2143
     #(2 4 6 8) detect:[:n | n odd] ifNone:['sorry']     
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2144
    "
9842
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2145
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2146
    "Modified: / 13-09-2006 / 11:17:42 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2147
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2148
421
claus
parents: 404
diff changeset
  2149
detectLast:aBlock
claus
parents: 404
diff changeset
  2150
    "evaluate the argument, aBlock for each element in the receiver until
claus
parents: 404
diff changeset
  2151
     the block returns true; in this case return the element which caused
claus
parents: 404
diff changeset
  2152
     the true evaluation. The elements are processed in reverse order.
claus
parents: 404
diff changeset
  2153
     If none of the evaluations returns true, report an error"
claus
parents: 404
diff changeset
  2154
claus
parents: 404
diff changeset
  2155
    ^ self detectLast:aBlock ifNone:[self errorNotFound]
claus
parents: 404
diff changeset
  2156
claus
parents: 404
diff changeset
  2157
    "
claus
parents: 404
diff changeset
  2158
     #(1 2 3 4) detectLast:[:n | n odd]   
claus
parents: 404
diff changeset
  2159
     #(2 4 6 8) detectLast:[:n | n odd]  
claus
parents: 404
diff changeset
  2160
    "
claus
parents: 404
diff changeset
  2161
!
claus
parents: 404
diff changeset
  2162
claus
parents: 404
diff changeset
  2163
detectLast:aBlock ifNone:exceptionBlock
claus
parents: 404
diff changeset
  2164
    "evaluate the argument, aBlock for each element in the receiver until
claus
parents: 404
diff changeset
  2165
     the block returns true; in this case return the element which caused
claus
parents: 404
diff changeset
  2166
     the true evaluation. The elements are processed in reverse order.
claus
parents: 404
diff changeset
  2167
     If none of the evaluations returns true, return the result of the
claus
parents: 404
diff changeset
  2168
     evaluation of the exceptionBlock"
claus
parents: 404
diff changeset
  2169
claus
parents: 404
diff changeset
  2170
    self reverseDo:[:each | 
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  2171
        (aBlock value:each) ifTrue:[^ each].
421
claus
parents: 404
diff changeset
  2172
    ].
claus
parents: 404
diff changeset
  2173
    ^ exceptionBlock value
claus
parents: 404
diff changeset
  2174
claus
parents: 404
diff changeset
  2175
    "
claus
parents: 404
diff changeset
  2176
     #(1 2 3 4) detectLast:[:n | n odd] ifNone:['sorry']    
claus
parents: 404
diff changeset
  2177
     #(2 4 6 8) detectLast:[:n | n odd] ifNone:['sorry']     
claus
parents: 404
diff changeset
  2178
    "
claus
parents: 404
diff changeset
  2179
!
claus
parents: 404
diff changeset
  2180
13608
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2181
detectMax: aBlock
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2182
    "Evaluate aBlock with each of the receiver's elements as the argument. 
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2183
    Answer the element for which aBlock evaluates to the highest magnitude.
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2184
    If collection empty, return nil.  This method might also be called elect:."
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2185
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2186
    | maxElement maxValue |
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2187
    self do: [:each | | val | 
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2188
        maxValue == nil
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2189
            ifFalse: [
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2190
                (val := aBlock value: each) > maxValue ifTrue: [
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2191
                    maxElement := each.
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2192
                    maxValue := val]]
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2193
            ifTrue: ["first element"
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2194
                maxElement := each.
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2195
                maxValue := aBlock value: each].
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2196
                "Note that there is no way to get the first element that works 
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2197
                for all kinds of Collections.  Must test every one."].
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2198
    ^ maxElement
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2199
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2200
    "Created: / 20-08-2011 / 21:34:49 / cg"
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2201
!
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2202
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2203
detectMin: aBlock
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2204
    "Evaluate aBlock with each of the receiver's elements as the argument. 
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2205
    Answer the element for which aBlock evaluates to the lowest number.
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2206
    If collection empty, return nil."
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2207
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2208
    | minElement minValue |
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2209
    self do: [:each | | val | 
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2210
        minValue == nil
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2211
            ifFalse: [
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2212
                (val := aBlock value: each) < minValue ifTrue: [
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2213
                    minElement := each.
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2214
                    minValue := val]]
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2215
            ifTrue: ["first element"
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2216
                minElement := each.
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2217
                minValue := aBlock value: each].
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2218
                "Note that there is no way to get the first element that works 
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2219
                for all kinds of Collections.  Must test every one."].
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2220
    ^ minElement
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2221
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2222
    "Created: / 20-08-2011 / 21:35:13 / cg"
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2223
!
Claus Gittinger <cg@exept.de>
parents: 13521
diff changeset
  2224
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2225
do:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2226
    "evaluate the argument, aBlock for each element"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2227
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2228
    ^ self subclassResponsibility
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2229
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2230
4394
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2231
do:aBlock inBetweenDo:betweenBlock
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2232
    "evaluate the argument, aBlock for each element.
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2233
     Between elements (i.e. after each except for the last),
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2234
     evaluate betweenBlock.
5254
f92e89d288bc comments
Claus Gittinger <cg@exept.de>
parents: 5207
diff changeset
  2235
     This is a utility helper for collection printers
f92e89d288bc comments
Claus Gittinger <cg@exept.de>
parents: 5207
diff changeset
  2236
     (for example, to print a space between elements)."
4394
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2237
8359
7c64bdb93f5c Mark obsolete methods
Stefan Vogel <sv@exept.de>
parents: 8275
diff changeset
  2238
    <resource: #obsolete>
6052
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2239
    self obsoleteMethodWarning:'use #do:separatedBy:'.
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2240
    ^ self do:aBlock separatedBy:betweenBlock
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2241
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2242
    "
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2243
     #(1 2 3 4) do:[:el | Transcript show:el]
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2244
                inBetweenDo:[ Transcript show:'-']
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2245
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2246
     (Dictionary with:(1->'one') with:(2->'two'))
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2247
         do:[:el | Transcript showCR:el printString]
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2248
         inBetweenDo:[ Transcript showCR:'----']
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2249
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2250
     (Dictionary with:(1->'one') with:(2->'two'))
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2251
        associations
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2252
         do:[:el | Transcript showCR:el printString]
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2253
         inBetweenDo:[ Transcript showCR:'----']
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2254
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2255
    "
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2256
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2257
    "Modified: / 11.2.2000 / 11:23:15 / cg"
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2258
!
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2259
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2260
do:aBlock separatedBy:betweenBlock
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2261
    "evaluate the argument, aBlock for each element.
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2262
     Between elements (i.e. after each except for the last),
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2263
     evaluate betweenBlock.
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2264
     This is a utility helper for collection printers
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2265
     (for example, to print a space between elements)."
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2266
4394
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2267
    |first|
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2268
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2269
    first := true.
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2270
    self do:[:element |
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2271
        first ifTrue:[
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2272
            first := false
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2273
        ] ifFalse:[
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2274
            betweenBlock value.
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2275
        ].
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2276
        aBlock value:element
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2277
    ].
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2278
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2279
    "
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2280
     #(1 2 3 4) do:[:el | Transcript show:el]
6052
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2281
                separatedBy:[ Transcript show:'-']
5619
3c3595e7ac73 example
martin
parents: 5607
diff changeset
  2282
3c3595e7ac73 example
martin
parents: 5607
diff changeset
  2283
     (Dictionary with:(1->'one') with:(2->'two'))
3c3595e7ac73 example
martin
parents: 5607
diff changeset
  2284
         do:[:el | Transcript showCR:el printString]
6052
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2285
         separatedBy:[ Transcript showCR:'----']
5619
3c3595e7ac73 example
martin
parents: 5607
diff changeset
  2286
3c3595e7ac73 example
martin
parents: 5607
diff changeset
  2287
     (Dictionary with:(1->'one') with:(2->'two'))
3c3595e7ac73 example
martin
parents: 5607
diff changeset
  2288
        associations
3c3595e7ac73 example
martin
parents: 5607
diff changeset
  2289
         do:[:el | Transcript showCR:el printString]
6052
a7c0dda5e0bc do:inBetweenDo: -> do:separatedBy: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 6042
diff changeset
  2290
         separatedBy:[ Transcript showCR:'----']
5619
3c3595e7ac73 example
martin
parents: 5607
diff changeset
  2291
4394
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2292
    "
5254
f92e89d288bc comments
Claus Gittinger <cg@exept.de>
parents: 5207
diff changeset
  2293
f92e89d288bc comments
Claus Gittinger <cg@exept.de>
parents: 5207
diff changeset
  2294
    "Modified: / 11.2.2000 / 11:23:15 / cg"
4394
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2295
!
a61bd07aaf1a added #do:inBetweenDo:
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  2296
14027
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2297
do:aBlock without:anItem
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2298
    "enumerate all elements except those equal to anItem into aBlock."
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2299
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2300
    self do:[:el |
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2301
        anItem ~= el ifTrue:[ aBlock value:el ]
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2302
    ].
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2303
    ^ self
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2304
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2305
    "
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2306
     #(1 2 3 4 999 5 6 7 8 9) 
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2307
        do:[:el | Transcript showCR:el ]
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2308
        without:5
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2309
    "
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2310
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2311
    "Created: / 28-02-2012 / 21:11:41 / cg"
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2312
!
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2313
1212
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2314
doWithExit:aBlock
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2315
    "evaluate the argument, aBlock for each element.
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2316
     Passes an additional exit object, which can be used to leave
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2317
     the loop early, by sending it a #value: message.
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2318
     Returns nil or the value passed to the exit>>value: message.
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2319
8662
dfc774e4b876 *** empty log message ***
penk
parents: 8631
diff changeset
  2320
     Notice, that this is different to a return statement in the block, 
dfc774e4b876 *** empty log message ***
penk
parents: 8631
diff changeset
  2321
     which returns from the enclosed method, NOT only from the block."
dfc774e4b876 *** empty log message ***
penk
parents: 8631
diff changeset
  2322
dfc774e4b876 *** empty log message ***
penk
parents: 8631
diff changeset
  2323
    |exit|
dfc774e4b876 *** empty log message ***
penk
parents: 8631
diff changeset
  2324
dfc774e4b876 *** empty log message ***
penk
parents: 8631
diff changeset
  2325
    exit := [:exitValue | ^exitValue].
dfc774e4b876 *** empty log message ***
penk
parents: 8631
diff changeset
  2326
    self do:[:el |
dfc774e4b876 *** empty log message ***
penk
parents: 8631
diff changeset
  2327
        aBlock value:el value:exit
dfc774e4b876 *** empty log message ***
penk
parents: 8631
diff changeset
  2328
    ].
dfc774e4b876 *** empty log message ***
penk
parents: 8631
diff changeset
  2329
    ^ nil
1212
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2330
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2331
    "Example:
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2332
     search for the first element which is >= 99; return it.
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2333
     remaining elements are not processed:
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2334
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2335
     #(1 2 3 4 999 5 6 7 8 9) 
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2336
        doWithExit:[:element :exit |
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
  2337
            Transcript showCR:element.
8662
dfc774e4b876 *** empty log message ***
penk
parents: 8631
diff changeset
  2338
            element >= 99 ifTrue:[exit value:element]]    
1212
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2339
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2340
     #(1 2 3 4 5 6 7 8 9) 
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2341
        doWithExit:[:element :exit |
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
  2342
            Transcript showCR:element.
1212
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2343
            element >= 99 ifTrue:[exit value:element]]
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2344
    "
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2345
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2346
    "to demonstrate the difference to returning from the block:
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2347
     this works:
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2348
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2349
     |el|
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2350
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2351
     el := #(1 2 3 4 999 5 6 7 8 9) 
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2352
        doWithExit:[:element :exit |
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2353
            element >= 99 ifTrue:[exit value:element]].
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
  2354
     Transcript showCR:el.
1212
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2355
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2356
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
  2357
     this does NOT work as expected by a newComer ;-) (the showCR is not reached):
1212
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2358
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2359
     |el|
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2360
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2361
     el := #(1 2 3 4 999 5 6 7 8 9) 
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2362
        do:[:element |
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2363
            element >= 99 ifTrue:[^ element]].
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
  2364
     Transcript showCR:el.
1212
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2365
    "
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2366
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2367
    "Modified: 18.4.1996 / 14:16:59 / cg"
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2368
!
4f05e716a6a7 added #doWithExit:
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2369
11412
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2370
flatDo:aBlock
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2371
    "for each element of the collection, if its a scalar, evaluate aBlock for it;
13226
8bc46aab41bf comment/format in: #flatDo:
Claus Gittinger <cg@exept.de>
parents: 13080
diff changeset
  2372
     otherwise, recursively invoke flatDo on the collection.
8bc46aab41bf comment/format in: #flatDo:
Claus Gittinger <cg@exept.de>
parents: 13080
diff changeset
  2373
     Thus implementing a depth-first enumeration"
11412
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2374
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2375
    self do:[:each |
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2376
        (each isNonByteCollection) ifTrue:[
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2377
            each flatDo:aBlock
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2378
        ] ifFalse:[
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2379
            aBlock value:each
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2380
        ].
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2381
    ].
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2382
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2383
    "
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2384
     #(
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2385
        (1 2 3)
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2386
        4 5
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2387
        (6)
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2388
        7
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2389
        (8 (9 10) 11 12 (13 (14 (15) 16)))) flatDo:[:el | Transcript showCR:el]
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2390
    "
13226
8bc46aab41bf comment/format in: #flatDo:
Claus Gittinger <cg@exept.de>
parents: 13080
diff changeset
  2391
8bc46aab41bf comment/format in: #flatDo:
Claus Gittinger <cg@exept.de>
parents: 13080
diff changeset
  2392
    "Modified: / 22-01-2011 / 09:12:22 / cg"
11412
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2393
!
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  2394
13698
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2395
fold: binaryBlock
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2396
    "Evaluate the block with the first two elements of the receiver,
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2397
     then with the result of the first evaluation and the next element,
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2398
     and so on.  Answer the result of the final evaluation. If the receiver
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2399
     is empty, raise an error. If the receiver has a single element, answer
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2400
     that element."
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2401
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2402
    | firstValue nextValue |
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2403
    firstValue := nextValue := Object new. "something that can't be in the receiver"
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2404
    self do:
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2405
        [:each |
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2406
        nextValue := firstValue == nextValue
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2407
                        ifTrue: [each]
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2408
                        ifFalse: [binaryBlock value: nextValue value: each]].
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2409
    ^nextValue == firstValue
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2410
        ifTrue: [self emptyCollectionError]
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2411
        ifFalse: [nextValue]
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2412
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2413
    "
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2414
     #('if' 'it' 'is' 'to' 'be' 'it' 'is' 'up' 'to' 'me') fold: [:a :b | a, ' ', b]
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2415
    "
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2416
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2417
    "Created: / 14-09-2011 / 16:29:53 / cg"
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2418
!
7e2f88e84460 added: #fold:
Claus Gittinger <cg@exept.de>
parents: 13678
diff changeset
  2419
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2420
inject:thisValue into:binaryBlock
1262
89e577d85251 commentary
Claus Gittinger <cg@exept.de>
parents: 1246
diff changeset
  2421
    "starting with thisValue for value, pass this value and each element
89e577d85251 commentary
Claus Gittinger <cg@exept.de>
parents: 1246
diff changeset
  2422
     to binaryBlock, replacing value with the result returned from the block
89e577d85251 commentary
Claus Gittinger <cg@exept.de>
parents: 1246
diff changeset
  2423
     in the next iteration."
89e577d85251 commentary
Claus Gittinger <cg@exept.de>
parents: 1246
diff changeset
  2424
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2425
    |nextValue|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2426
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2427
    nextValue := thisValue.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2428
    self do: [:each | nextValue := binaryBlock value:nextValue value:each].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2429
    ^ nextValue
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2430
1262
89e577d85251 commentary
Claus Gittinger <cg@exept.de>
parents: 1246
diff changeset
  2431
    "sum up the elements of a collection:
89e577d85251 commentary
Claus Gittinger <cg@exept.de>
parents: 1246
diff changeset
  2432
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2433
     #(1 2 3 4) inject:0 into:[:accu :element | accu + element]   
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2434
     (1 to:10) inject:0 into:[:accu :element | accu + element]     
1262
89e577d85251 commentary
Claus Gittinger <cg@exept.de>
parents: 1246
diff changeset
  2435
89e577d85251 commentary
Claus Gittinger <cg@exept.de>
parents: 1246
diff changeset
  2436
     find the minimum:
89e577d85251 commentary
Claus Gittinger <cg@exept.de>
parents: 1246
diff changeset
  2437
89e577d85251 commentary
Claus Gittinger <cg@exept.de>
parents: 1246
diff changeset
  2438
     |coll|
89e577d85251 commentary
Claus Gittinger <cg@exept.de>
parents: 1246
diff changeset
  2439
     coll := #(1 99 -15 20 100).
89e577d85251 commentary
Claus Gittinger <cg@exept.de>
parents: 1246
diff changeset
  2440
     coll inject:(coll first) into:[:minSoFar :element | minSoFar min:element]
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2441
    "
1262
89e577d85251 commentary
Claus Gittinger <cg@exept.de>
parents: 1246
diff changeset
  2442
89e577d85251 commentary
Claus Gittinger <cg@exept.de>
parents: 1246
diff changeset
  2443
    "Modified: 23.4.1996 / 13:47:06 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2444
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2445
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2446
keysAndValuesDo:aTwoArgBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2447
    "evaluate the argument, aBlock for every element in the collection,
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2448
     passing both index and element as arguments."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2449
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2450
    ^ self errorNotKeyed
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2451
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2452
1359
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1325
diff changeset
  2453
keysAndValuesReverseDo:aTwoArgBlock
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1325
diff changeset
  2454
    "evaluate the argument, aBlock in reverse order for every element in the collection,
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1325
diff changeset
  2455
     passing both index and element as arguments."
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1325
diff changeset
  2456
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1325
diff changeset
  2457
    ^ self errorNotKeyed
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1325
diff changeset
  2458
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1325
diff changeset
  2459
    "Created: 9.5.1996 / 00:58:24 / cg"
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1325
diff changeset
  2460
!
5ff95f3f0baf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1325
diff changeset
  2461
9076
e7957fd220c8 +keysAndValuesSelect:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 9073
diff changeset
  2462
keysAndValuesSelect:selectBlockWith2Args thenCollect:collectBlockWith2Args
e7957fd220c8 +keysAndValuesSelect:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 9073
diff changeset
  2463
    |collected|
e7957fd220c8 +keysAndValuesSelect:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 9073
diff changeset
  2464
e7957fd220c8 +keysAndValuesSelect:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 9073
diff changeset
  2465
    collected := OrderedCollection new.
e7957fd220c8 +keysAndValuesSelect:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 9073
diff changeset
  2466
    self keysAndValuesDo:[:eachKey :eachValue |
e7957fd220c8 +keysAndValuesSelect:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 9073
diff changeset
  2467
        (selectBlockWith2Args value:eachKey value:eachValue) ifTrue:[
e7957fd220c8 +keysAndValuesSelect:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 9073
diff changeset
  2468
            collected add:(collectBlockWith2Args value:eachKey value:eachValue)
e7957fd220c8 +keysAndValuesSelect:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 9073
diff changeset
  2469
        ].
e7957fd220c8 +keysAndValuesSelect:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 9073
diff changeset
  2470
    ].
e7957fd220c8 +keysAndValuesSelect:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 9073
diff changeset
  2471
    ^ collected
9077
327b64542a83 +keysAndValuesSelect:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 9076
diff changeset
  2472
327b64542a83 +keysAndValuesSelect:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 9076
diff changeset
  2473
    "
327b64542a83 +keysAndValuesSelect:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 9076
diff changeset
  2474
     #(10 20 30 40) keysAndValuesSelect:[:idx :val | idx > 2] thenCollect:[:idx :val | idx->val]
327b64542a83 +keysAndValuesSelect:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 9076
diff changeset
  2475
    "
9076
e7957fd220c8 +keysAndValuesSelect:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 9073
diff changeset
  2476
!
e7957fd220c8 +keysAndValuesSelect:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 9073
diff changeset
  2477
13042
59a4be13980e added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13041
diff changeset
  2478
keysDo:aBlock
59a4be13980e added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13041
diff changeset
  2479
    "evaluate the argument, aBlock for every key in the collection."
59a4be13980e added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13041
diff changeset
  2480
59a4be13980e added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13041
diff changeset
  2481
    self keysAndValuesDo:[:k :v | aBlock value:k]
59a4be13980e added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13041
diff changeset
  2482
59a4be13980e added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13041
diff changeset
  2483
    "Created: / 24-08-2010 / 10:12:14 / cg"
59a4be13980e added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13041
diff changeset
  2484
!
59a4be13980e added: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 13041
diff changeset
  2485
7454
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2486
map:selector
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2487
    "for lisp fans - similar to collect"
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2488
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2489
    ^ self collect:[:eachElement | eachElement perform:selector].
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2490
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2491
    "
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2492
     #(1 2 3 4) map:#negated  
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2493
    "
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2494
!
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2495
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2496
map:selector with:arg
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2497
    "for lisp fans - similar to collect"
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2498
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2499
    ^ self collect:[:eachElement | eachElement perform:selector with:arg].
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2500
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2501
    "
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2502
     #(1 2 3 4) map:#+ with:1  
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2503
    "
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2504
!
584b593965da +map: / map:with:
Claus Gittinger <cg@exept.de>
parents: 7336
diff changeset
  2505
8863
3e7dc1b51635 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8858
diff changeset
  2506
nonNilElementsDo:aBlock
3e7dc1b51635 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8858
diff changeset
  2507
    "evaluate the argument, aBlock for every non-nil element in the collection."
3e7dc1b51635 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8858
diff changeset
  2508
3e7dc1b51635 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8858
diff changeset
  2509
    self do:[:each |
3e7dc1b51635 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8858
diff changeset
  2510
        each notNil ifTrue:[
3e7dc1b51635 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8858
diff changeset
  2511
            aBlock value:each.
3e7dc1b51635 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8858
diff changeset
  2512
        ]
3e7dc1b51635 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8858
diff changeset
  2513
    ]
13870
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  2514
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  2515
    "
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  2516
     #(1 nil 3 nil nil 6 7 nil)
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  2517
        nonNilElementsDo:[:el | Transcript showCR:el]
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  2518
    "
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  2519
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  2520
    "Modified (comment): / 21-12-2011 / 15:51:39 / cg"
8863
3e7dc1b51635 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8858
diff changeset
  2521
!
3e7dc1b51635 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8858
diff changeset
  2522
10750
705893e37dca comment
Claus Gittinger <cg@exept.de>
parents: 10593
diff changeset
  2523
pairsDo:aTwoArgBlock
705893e37dca comment
Claus Gittinger <cg@exept.de>
parents: 10593
diff changeset
  2524
    "evaluate the argument, aTwoArgBlock for every element in the collection,
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2525
     which is supposed to consist of 2-element collections.
12347
d67d6827d22a comments
Claus Gittinger <cg@exept.de>
parents: 12345
diff changeset
  2526
     The block is called with 2 arguments for each collection in the receiver.
d67d6827d22a comments
Claus Gittinger <cg@exept.de>
parents: 12345
diff changeset
  2527
     CONFUSION ATTACK: 
d67d6827d22a comments
Claus Gittinger <cg@exept.de>
parents: 12345
diff changeset
  2528
        this is different from pairWiseDo:.
d67d6827d22a comments
Claus Gittinger <cg@exept.de>
parents: 12345
diff changeset
  2529
        but the Squeak-pairsDo: does the same as our pairWiseDo: 
d67d6827d22a comments
Claus Gittinger <cg@exept.de>
parents: 12345
diff changeset
  2530
        (sigh: but we were first, so they should have adapted...)"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2531
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2532
    self do:[:aPair |
10750
705893e37dca comment
Claus Gittinger <cg@exept.de>
parents: 10593
diff changeset
  2533
        aTwoArgBlock value:(aPair at:1) value:(aPair at:2).
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2534
    ]
10750
705893e37dca comment
Claus Gittinger <cg@exept.de>
parents: 10593
diff changeset
  2535
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2536
    "
6555
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2537
     #( 
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2538
        (1 one) 
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2539
        (2 two) 
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2540
        (3 three) 
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2541
        (4 four) 
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2542
        (5 five) 
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2543
        (6 six)
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2544
      ) pairsDo:
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2545
        [:num :sym | 
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2546
            Transcript show:num; show:' is: '; showCR:sym]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2547
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2548
     #( (1 1)  (1 2)  (1 3)  (1 4)  (1 5)) 
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
  2549
     pairsDo:[:x :y | Transcript showCR:x@y]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2550
    "
10750
705893e37dca comment
Claus Gittinger <cg@exept.de>
parents: 10593
diff changeset
  2551
705893e37dca comment
Claus Gittinger <cg@exept.de>
parents: 10593
diff changeset
  2552
    "Modified: / 20-10-2007 / 17:17:50 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2553
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2554
13512
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2555
partition:check into:aTwoArgBlock
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2556
    "partition the receiver elements into two sets, depending on the outcome
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2557
     of a check block. Evaluate aTwoArgBlock on the two selected and rejected value 
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2558
     collections. Also return the selected values as return value"
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2559
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2560
    |selected rejected|
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2561
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2562
    selected := OrderedCollection new.
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2563
    rejected := OrderedCollection new. 
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2564
    self do:[:each | ((check value:each) ifTrue:[selected] ifFalse:[rejected]) add:each].
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2565
    aTwoArgBlock value:selected value:rejected.
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2566
    ^ selected
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2567
13870
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  2568
    "
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  2569
     #(1 2 3 4 5 6 7 8)
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  2570
        partition:[:el | el even]
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  2571
        into:[:evenElements :oddElements |
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  2572
            Transcript show:'even: '; showCR:evenElements.
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  2573
            Transcript show:' odd: '; showCR:oddElements.
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  2574
        ].
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  2575
    "
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  2576
13512
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2577
    "Created: / 20-07-2011 / 00:54:41 / cg"
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2578
!
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2579
14027
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2580
reduce:aTwoArgBlock
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2581
    "reduce by iteratively applying aTwoArgBlock to the result from the
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2582
     previous reduce and an element. 
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2583
     The first evaluation is on the first two elements."
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2584
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2585
    |first|
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2586
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2587
    self emptyCheck.
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2588
    first := true.
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2589
    ^ self 
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2590
        inject:nil 
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2591
        into:[:accu :el |
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2592
            first ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2593
                first := false.
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2594
                el
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2595
            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2596
                aTwoArgBlock value:el value:accu
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2597
            ]
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2598
        ]
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2599
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2600
    "
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2601
     #(10 1 2 3) reduce:[:el :diff | diff - el] 
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2602
     #(10 1 2 3) reduce:[:el :diff | diff + el] 
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2603
    "
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2604
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2605
    "Created: / 28-02-2012 / 21:16:33 / cg"
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2606
!
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2607
13512
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2608
reduceLeft:aTwoArgBlock
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2609
    "reduce by iteratively applying aTwoArgBlock to an element and the result from the
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2610
     previous reduce. The first evaluation is on the first two elements."
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2611
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2612
    |first|
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2613
14027
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  2614
    self emptyCheck.
13512
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2615
    first := true.
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2616
    ^ self 
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2617
        inject:nil 
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2618
        into:[:accu :el |
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2619
            first ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2620
                first := false.
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2621
                el
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2622
            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2623
                aTwoArgBlock value:accu value:el
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2624
            ]
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2625
        ]
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2626
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2627
    "
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2628
     #(1 2 3 4 5) reduceLeft:[:sum :el | sum + el] 
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2629
    "
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2630
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2631
    "Created: / 20-07-2011 / 01:01:03 / cg"
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2632
!
Claus Gittinger <cg@exept.de>
parents: 13468
diff changeset
  2633
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2634
reject:aBlock
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2635
    "return a new collection with all elements from the receiver, for which
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2636
     the argument aBlock evaluates to false"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2637
11928
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2638
    ^ self select:[:element | (aBlock value:element) not]
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2639
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2640
    "
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2641
     #(1 2 3 4) reject:[:e | e odd]   
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2642
     (1 to:10) reject:[:e | e even]     
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2643
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2644
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2645
11928
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2646
reject:rejectBlock thenCollect:collectBlock
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2647
    "combination of reject followed by collect.
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2648
     May be redefined by some subclasses for optimal performance
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2649
     (avoiding the creation of intermediate garbage)"
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2650
12944
791a4ec545c2 changed: #reject:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 12943
diff changeset
  2651
    ^ self select:[:el | (rejectBlock value:el) not] thenCollect:collectBlock
11928
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2652
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2653
    "
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2654
     #(1 2 3 4 5 6 7) reject:[:i | i even] thenCollect:[:i | i * 2]
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2655
    "
12944
791a4ec545c2 changed: #reject:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 12943
diff changeset
  2656
791a4ec545c2 changed: #reject:thenCollect:
Claus Gittinger <cg@exept.de>
parents: 12943
diff changeset
  2657
    "Modified: / 11-07-2010 / 17:04:07 / cg"
11928
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2658
!
6e1f7640fa67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11916
diff changeset
  2659
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2660
reverseDo:aBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2661
    "evaluate the argument, aBlock for each element in reverse order."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2662
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2663
    "it could be defined in terms of do: - but very inefficient.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2664
     Better force programmer to define a better version ..."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2665
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2666
    ^ self subclassResponsibility
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2667
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2668
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2669
select:aBlock
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2670
    "return a new collection with all elements from the receiver, for which
5265
96ac13085fea comments
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2671
     the argument aBlock evaluates to true.
96ac13085fea comments
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2672
     See also: #removeAllFoundIn: and #removeAllSuchThat:"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2673
13002
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2674
    ^ self select:aBlock as:(self species)
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2675
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2676
    "
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2677
     #(1 2 3 4) select:[:e | e odd]   
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2678
     (1 to:10) select:[:e | e even]     
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2679
    "
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2680
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2681
    "Modified: / 07-08-2010 / 16:26:40 / cg"
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2682
!
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2683
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2684
select:aBlock as:aCollectionClass
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2685
    "return a new collection with all elements from the receiver, for which
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2686
     the argument aBlock evaluates to true.
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2687
     See also: #removeAllFoundIn: and #removeAllSuchThat:"
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2688
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2689
    |newCollection|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2690
13002
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2691
    newCollection := aCollectionClass new.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2692
    self do:[:each |
5265
96ac13085fea comments
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2693
        (aBlock value:each) ifTrue:[newCollection add:each].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2694
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2695
    ^ newCollection
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2696
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2697
    "
13002
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2698
     #(1 2 3 4) select:[:e | e odd] as:OrderedCollection  
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2699
     (1 to:10) select:[:e | e even] as:OrderedCollection       
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2700
    "
13002
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2701
8029e08d5907 added: #select:as:
Claus Gittinger <cg@exept.de>
parents: 12993
diff changeset
  2702
    "Created: / 07-08-2010 / 16:26:15 / cg"
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2703
!
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2704
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2705
select:aBlock ifNone:exceptionBlock
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2706
    "try a new collection with all elements from the receiver, for which
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2707
     the argument aBlock evaluates to true. If none of the elements passes
5265
96ac13085fea comments
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2708
     the check of aBlock, return the result of evaluating exceptionBlock.
96ac13085fea comments
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2709
     See also: #removeAllFoundIn: and #removeAllSuchThat:"
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2710
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2711
    |newCollection|
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2712
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2713
    newCollection := self select:aBlock.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2714
    newCollection isEmpty ifTrue:[^ exceptionBlock value].
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2715
    ^ newCollection
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2716
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2717
    "
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2718
     #(1 2 3 4) select:[:e | e > 10] ifNone:['sorry']  
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2719
    "
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2720
!
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2721
4892
694903566445 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  2722
select:selectBlock thenCollect:collectBlock
694903566445 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  2723
    "combination of select followed by collect.
694903566445 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  2724
     May be redefined by some subclasses for optimal performance
5844
3235138edd0e comment only
Stefan Vogel <sv@exept.de>
parents: 5752
diff changeset
  2725
     (avoiding the creation of intermediate garbage)"
4892
694903566445 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  2726
694903566445 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  2727
    ^ (self select:selectBlock) collect:collectBlock
694903566445 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  2728
694903566445 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  2729
    "
694903566445 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  2730
     #(1 2 3 4 5 6 7) select:[:i | i even] thenCollect:[:i | i * 2]
694903566445 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  2731
    "
694903566445 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  2732
!
694903566445 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  2733
6695
dc0a9be75187 + select:thenDo:
Claus Gittinger <cg@exept.de>
parents: 6672
diff changeset
  2734
select:selectBlock thenDo:doBlock
dc0a9be75187 + select:thenDo:
Claus Gittinger <cg@exept.de>
parents: 6672
diff changeset
  2735
    "combination of select followed by do
dc0a9be75187 + select:thenDo:
Claus Gittinger <cg@exept.de>
parents: 6672
diff changeset
  2736
     Avoids the creation of intermediate garbage"
dc0a9be75187 + select:thenDo:
Claus Gittinger <cg@exept.de>
parents: 6672
diff changeset
  2737
dc0a9be75187 + select:thenDo:
Claus Gittinger <cg@exept.de>
parents: 6672
diff changeset
  2738
    self do:[:eachElement |
dc0a9be75187 + select:thenDo:
Claus Gittinger <cg@exept.de>
parents: 6672
diff changeset
  2739
        (selectBlock value:eachElement) ifTrue:[
dc0a9be75187 + select:thenDo:
Claus Gittinger <cg@exept.de>
parents: 6672
diff changeset
  2740
            doBlock value:eachElement
dc0a9be75187 + select:thenDo:
Claus Gittinger <cg@exept.de>
parents: 6672
diff changeset
  2741
        ]
dc0a9be75187 + select:thenDo:
Claus Gittinger <cg@exept.de>
parents: 6672
diff changeset
  2742
    ].
dc0a9be75187 + select:thenDo:
Claus Gittinger <cg@exept.de>
parents: 6672
diff changeset
  2743
dc0a9be75187 + select:thenDo:
Claus Gittinger <cg@exept.de>
parents: 6672
diff changeset
  2744
    "
dc0a9be75187 + select:thenDo:
Claus Gittinger <cg@exept.de>
parents: 6672
diff changeset
  2745
     #(1 2 3 4 5 6 7) select:[:i | i even] thenDo:[:i | Transcript showCR:i]
dc0a9be75187 + select:thenDo:
Claus Gittinger <cg@exept.de>
parents: 6672
diff changeset
  2746
    "
dc0a9be75187 + select:thenDo:
Claus Gittinger <cg@exept.de>
parents: 6672
diff changeset
  2747
!
dc0a9be75187 + select:thenDo:
Claus Gittinger <cg@exept.de>
parents: 6672
diff changeset
  2748
362
claus
parents: 360
diff changeset
  2749
triplesDo:aBlock
claus
parents: 360
diff changeset
  2750
    "evaluate the argument, aBlock for every element in the collection,
claus
parents: 360
diff changeset
  2751
     which is supposed to consist of 3-element collections.
claus
parents: 360
diff changeset
  2752
     The block is called with 3 arguments for each collection in the receiver."
claus
parents: 360
diff changeset
  2753
claus
parents: 360
diff changeset
  2754
    self do:[:aTriple |
2639
4789c2cfbed0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2434
diff changeset
  2755
        aBlock value:(aTriple at:1) value:(aTriple at:2) value:(aTriple at:3).
362
claus
parents: 360
diff changeset
  2756
    ]
claus
parents: 360
diff changeset
  2757
    "
6555
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2758
     #( 
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2759
        (1 one eins) 
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2760
        (2 two zwei) 
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2761
        (3 three drei) 
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2762
        (4 four vier) 
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2763
        (5 five #'fuenf') 
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2764
        (6 six sechs)
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2765
     ) 
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2766
     triplesDo:[:num :sym1 :sym2 | 
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2767
                    Transcript show:num; space; show:sym1; space; showCR:sym2
e871e228b92f comment
Claus Gittinger <cg@exept.de>
parents: 6547
diff changeset
  2768
               ]
362
claus
parents: 360
diff changeset
  2769
    "
2639
4789c2cfbed0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2434
diff changeset
  2770
4789c2cfbed0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2434
diff changeset
  2771
    "Modified: 10.5.1997 / 14:15:43 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2772
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2773
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2774
with:aCollection collect:aTwoArgBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2775
    "evaluate the argument, aBlock for successive elements from
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2776
     each the receiver and the argument, aSequenceableCollection;
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2777
     The second argument, aBlock must be a two-argument block, which is
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2778
     evaluated for each element-pair.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2779
     Collect the results and return a collection containing them.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2780
     This method fails if neither the receiver nor aCollection is
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2781
     a sequenceable collection (i.e. implements numeric key access)."
260
cefb485445a7 *** empty log message ***
claus
parents: 257
diff changeset
  2782
12653
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2783
    |newCollection|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2784
6547
86e092527dd1 +#speciesForAdding; better #collect:with: for fixed size collections
Claus Gittinger <cg@exept.de>
parents: 6511
diff changeset
  2785
    newCollection := self speciesForAdding new.
12653
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2786
    self with:aCollection do:[:el1 :el2 |
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2787
        newCollection add:(aTwoArgBlock value:el1 value:el2).
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2788
    ].
6547
86e092527dd1 +#speciesForAdding; better #collect:with: for fixed size collections
Claus Gittinger <cg@exept.de>
parents: 6511
diff changeset
  2789
    ^ newCollection as:self species
201
1deff0d47f37 changed copyEmpty scheme
claus
parents: 169
diff changeset
  2790
1deff0d47f37 changed copyEmpty scheme
claus
parents: 169
diff changeset
  2791
    "
6547
86e092527dd1 +#speciesForAdding; better #collect:with: for fixed size collections
Claus Gittinger <cg@exept.de>
parents: 6511
diff changeset
  2792
     (1 to:3) with:#(one two three) collect:[:num :sym | (num->sym)] 
12653
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2793
     #(1 2 3) with:#(10 20 30) collect:[:x :y | (x@y)]  
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2794
    "
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2795
!
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2796
13464
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2797
with:aCollection contains:aTwoArgBlock
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2798
    "evaluate the argument, aBlock for successive elements from
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2799
     each the receiver and the argument, aCollection.
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2800
     Return true, if the block returns true for any of these pairs.
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2801
     This method fails if neither the receiver nor aCollection is
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2802
     a sequenceable collection (i.e. implements numeric key access)."
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2803
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2804
    self with:aCollection do:[:a :b |
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2805
        (aTwoArgBlock value:a value:b) ifTrue:[^ true].
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2806
    ].
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2807
    ^ false.
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2808
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2809
    "
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2810
     (1 to:3) with:#(1 2 3 4) contains:[:a :b | a ~= b]   --- raises an error
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2811
     (1 to:3) with:#(1 22 3) contains:[:a :b | a ~= b]  
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2812
     (1 to:3) with:#(1 2 3) contains:[:a :b | a ~= b]  
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2813
    "
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2814
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2815
    "Created: / 30-06-2011 / 12:37:41 / cg"
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2816
    "Modified (Format): / 30-06-2011 / 12:40:38 / cg"
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2817
!
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2818
12653
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2819
with:aCollection count:aTwoArgBlock
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2820
    "evaluate the argument, aBlock for successive elements from
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2821
     each the receiver and the argument, aSequenceableCollection.
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2822
     Count, how often the second argument, aTwoArgBlock returns true.
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2823
     This method fails if neither the receiver nor aCollection is
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2824
     a sequenceable collection (i.e. implements numeric key access)."
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2825
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2826
    |count  "{ Class: SmallInteger }"|
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2827
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2828
    count := 0.
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2829
    self with:aCollection do:[:el1 :el2 |
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2830
        (aTwoArgBlock value:el1 value:el2) ifTrue:[
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2831
            count := count + 1
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2832
        ]
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2833
    ].
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2834
    ^ count
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2835
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2836
    "
819c557603e9 added: #with:count:
Claus Gittinger <cg@exept.de>
parents: 12636
diff changeset
  2837
     (1 to:3) with:#(1 3 3) count:[:n1 :n2 | n1 = n2]
201
1deff0d47f37 changed copyEmpty scheme
claus
parents: 169
diff changeset
  2838
    "
2
claus
parents: 1
diff changeset
  2839
!
claus
parents: 1
diff changeset
  2840
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2841
with:aCollection do:aTwoArgBlock
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2842
    "evaluate the argument, aBlock for successive elements from
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2843
     each the receiver and the argument, aSequenceableCollection.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2844
     The second argument, aBlock must be a two-argument block.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2845
     This method fails if neither the receiver nor aCollection is
13468
7a4e15f44afe comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  2846
     a sequenceable collection (i.e. implements numeric key access) 
7a4e15f44afe comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  2847
     or (new!!) if the sizes are different."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2848
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2849
    |index  "{ Class: SmallInteger }"|
2
claus
parents: 1
diff changeset
  2850
13464
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2851
    aCollection size == self size ifFalse:[
13468
7a4e15f44afe comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  2852
        NotEnoughElementsSignal raiseRequestErrorString:'collections must be of the same size'.
13464
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2853
    ].
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2854
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2855
    index := 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2856
    aCollection isSequenceable ifFalse:[
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  2857
        self isSequenceable ifFalse:[
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  2858
            ^ self error:'neither collection is sequenceable'.
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  2859
        ].
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  2860
        aCollection do:[:element |
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  2861
            aTwoArgBlock value:(self at:index) value:element.
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  2862
            index := index + 1
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  2863
        ]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2864
    ] ifTrue:[
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  2865
        self do:[:element |
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  2866
            aTwoArgBlock value:element value:(aCollection at:index).
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  2867
            index := index + 1
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  2868
        ]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2869
    ]
201
1deff0d47f37 changed copyEmpty scheme
claus
parents: 169
diff changeset
  2870
1deff0d47f37 changed copyEmpty scheme
claus
parents: 169
diff changeset
  2871
    "
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2872
     (1 to:3) with:#(one two three) do:[:num :sym |
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  2873
        Transcript showCR:(num->sym)
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2874
     ]
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2875
     (1 to:3) with:#(one two three) asSet do:[:num :sym |
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  2876
        Transcript showCR:(num->sym)
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2877
     ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2878
     (1 to:3) asSet with:#(one two three) do:[:num :sym |
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  2879
        Transcript showCR:(num->sym)
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2880
     ]
201
1deff0d47f37 changed copyEmpty scheme
claus
parents: 169
diff changeset
  2881
    "
13464
1152972f8fb2 added: #with:contains:
Claus Gittinger <cg@exept.de>
parents: 13338
diff changeset
  2882
13468
7a4e15f44afe comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  2883
    "Modified: / 30-06-2011 / 17:39:47 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2884
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2885
5874
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2886
!Collection methodsFor:'enumerating-tests'!
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2887
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2888
allSatisfy:aBlock 
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2889
    "evaluate aBlock for each of the receiver's elements. 
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2890
     Return true, if aBlock returns true for all elements, false otherwise
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2891
     (i.e. false if any element fails to satisfy the block-condition).
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2892
     This is an ANSI renomer of #conform:"
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2893
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2894
    ^ self conform:aBlock.
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2895
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2896
    "
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2897
     #(1 2 3 4 5) allSatisfy:[:el | el odd]   
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2898
     #(2 4 6 8 10) allSatisfy:[:el | el odd]  
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2899
     #(2 4 6 8 10) allSatisfy:[:el | el even]  
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2900
    "
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2901
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2902
!
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2903
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2904
anySatisfy:aBlock 
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2905
    "evaluate aBlock for each of the receiver's elements. 
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2906
     Return true, if aBlock ever returns true, false otherwise
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2907
     (i.e. if any element satisfies the block-condition).
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2908
     This is an ANSI renomer of #contains:"
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2909
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2910
    ^ self contains:aBlock.
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2911
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2912
    "
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2913
     #(1 2 3 4 5) anySatisfy:[:el | el odd]   
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2914
     #(2 4 6 8 10) anySatisfy:[:el | el odd]  
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2915
    "
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2916
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2917
!
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2918
9842
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2919
conform:aOneArgBlock
5874
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2920
    "return true, if every element conforms to some condition.
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2921
     I.e. return false, if aBlock returns false for any element;
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2922
     true otherwise."
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2923
9842
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2924
    self do:[:element | 
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2925
        (aOneArgBlock value:element) ifFalse:[^ false]
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2926
    ].
5874
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2927
    ^ true
9842
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2928
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2929
    "
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2930
     #(1 2 3 4 5) conform:[:el | el even]     
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2931
     #(2 4 6 8 10) conform:[:el | el even]    
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2932
    "
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2933
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2934
    "Modified: / 13-09-2006 / 11:19:03 / cg"
5874
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2935
!
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2936
9842
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2937
contains:aOneArgBlock 
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2938
    "evaluate aOneArgBlock for each of the receiver's elements. 
5874
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2939
     Return true, if aBlock ever returns true, false otherwise."
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2940
9842
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2941
    self do:[:element | 
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2942
        (aOneArgBlock value:element) ifTrue:[^ true]
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2943
    ].
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2944
    ^ false
5874
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2945
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2946
    "
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2947
     #(1 2 3 4 5) contains:[:el | el odd]  
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2948
     #(2 4 6 8 10) contains:[:el | el odd]  
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2949
    "
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2950
9842
7deebdffbced comments
Claus Gittinger <cg@exept.de>
parents: 9410
diff changeset
  2951
    "Modified: / 13-09-2006 / 11:18:36 / cg"
8577
181fa2db957b +noneSatisfy:
Claus Gittinger <cg@exept.de>
parents: 8510
diff changeset
  2952
!
181fa2db957b +noneSatisfy:
Claus Gittinger <cg@exept.de>
parents: 8510
diff changeset
  2953
181fa2db957b +noneSatisfy:
Claus Gittinger <cg@exept.de>
parents: 8510
diff changeset
  2954
noneSatisfy:aBlock 
181fa2db957b +noneSatisfy:
Claus Gittinger <cg@exept.de>
parents: 8510
diff changeset
  2955
    "evaluate aBlock for each of the receiver's elements. 
181fa2db957b +noneSatisfy:
Claus Gittinger <cg@exept.de>
parents: 8510
diff changeset
  2956
     Return true, if aBlock returns false for all elements, false otherwise
181fa2db957b +noneSatisfy:
Claus Gittinger <cg@exept.de>
parents: 8510
diff changeset
  2957
     (i.e. false if any element satisfies the block-condition)."
181fa2db957b +noneSatisfy:
Claus Gittinger <cg@exept.de>
parents: 8510
diff changeset
  2958
9843
7510b6eded4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9842
diff changeset
  2959
    ^ (self contains:aBlock) not
8577
181fa2db957b +noneSatisfy:
Claus Gittinger <cg@exept.de>
parents: 8510
diff changeset
  2960
181fa2db957b +noneSatisfy:
Claus Gittinger <cg@exept.de>
parents: 8510
diff changeset
  2961
    "
181fa2db957b +noneSatisfy:
Claus Gittinger <cg@exept.de>
parents: 8510
diff changeset
  2962
     #(1 2 3 4 5) noneSatisfy:[:el | el odd]   
181fa2db957b +noneSatisfy:
Claus Gittinger <cg@exept.de>
parents: 8510
diff changeset
  2963
     #(2 4 6 8 10) noneSatisfy:[:el | el odd]  
181fa2db957b +noneSatisfy:
Claus Gittinger <cg@exept.de>
parents: 8510
diff changeset
  2964
     #(2 4 6 8 10) noneSatisfy:[:el | el even]  
181fa2db957b +noneSatisfy:
Claus Gittinger <cg@exept.de>
parents: 8510
diff changeset
  2965
    "
9843
7510b6eded4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9842
diff changeset
  2966
7510b6eded4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9842
diff changeset
  2967
    "Modified: / 13-09-2006 / 11:19:57 / cg"
5874
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2968
! !
bc4d80e3700f category change
Claus Gittinger <cg@exept.de>
parents: 5864
diff changeset
  2969
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2970
!Collection methodsFor:'error handling'!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2971
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2972
emptyCheck 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2973
    "check if the receiver is empty; report an error if so"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2974
11475
f7e1a355df17 changed #emptyCheck (is isEmpty instead of size == 0)
Claus Gittinger <cg@exept.de>
parents: 11470
diff changeset
  2975
    self isEmpty ifTrue:[
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  2976
        ^ self emptyCollectionError.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2977
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2978
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2979
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2980
emptyCollectionError
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2981
    "report an error that the operation is not allowed for
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2982
     empty collections"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2983
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2984
    ^ EmptyCollectionSignal raise
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2985
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2986
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2987
errorInvalidKey:aKey
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2988
    "report an error that the given key was invalid"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2989
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2990
    ^ InvalidKeySignal raiseRequestWith:aKey
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2991
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2992
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2993
errorNotKeyed
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2994
    "report an error that keyed access methods are not allowed"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2995
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2996
    ^ self error:(self class name, 's do not respond to keyed accessing messages')
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2997
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2998
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2999
errorValueNotFound:anObject
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3000
    "report an error that an object was not found in the collection"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3001
6757
f0a9574cfb4e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6695
diff changeset
  3002
    ^ ValueNotFoundSignal raiseRequestWith:anObject
3075
e107505dc862 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  3003
e107505dc862 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  3004
    "Modified: / 30.10.1997 / 15:52:18 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3005
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3006
14022
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3007
noModificationError
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3008
    "a store is attempted into an immutable collection (typically: a literal).
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3009
     For our convenience, find the method that contains me, for a nicer error message"
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3010
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3011
    |creator msg context|
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3012
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3013
    creator := Method allSubInstances detect:[:aMethod | (aMethod referencesGlobal:self)] ifNone:nil.
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3014
    creator notNil ifTrue:[
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3015
        msg := ' (' , creator whoString , ')'
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3016
    ].
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3017
    context := thisContext sender.
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3018
     "
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3019
     this error is reported on an attempt to store into an immutable collection (typically: a literal). 
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3020
     The literal was created in creator.
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3021
     If you press continue in the debugger, the store will be performed.
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3022
     If you don't want this, press abort and check your code.
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3023
     Storing into literals is VERY VERY bad coding style.
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3024
    "
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3025
    NoModificationError
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3026
        raiseRequestWith:self
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3027
        errorString:msg
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3028
        in:context.
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3029
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3030
    "Created: / 03-08-1998 / 14:47:45 / cg"
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3031
!
28ecd3e2d8c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 13872
diff changeset
  3032
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3033
notEnoughElementsError
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3034
    "report an error that the operation is not allowed,  
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3035
     since not enough elements are in the collection"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3036
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3037
    ^ NotEnoughElementsSignal raise
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3038
! !
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3039
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3040
!Collection methodsFor:'growing'!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3041
9309
d1fe8655bb97 move #changeCapacityTo: from Set to Collection
Stefan Vogel <sv@exept.de>
parents: 9247
diff changeset
  3042
changeCapacityTo:newSize
d1fe8655bb97 move #changeCapacityTo: from Set to Collection
Stefan Vogel <sv@exept.de>
parents: 9247
diff changeset
  3043
    newSize > self capacity ifTrue:[
11315
9a6ca3147b69 #showWhereWeCameFrom - show more stack backtrace
Stefan Vogel <sv@exept.de>
parents: 11309
diff changeset
  3044
        self grow:newSize
9309
d1fe8655bb97 move #changeCapacityTo: from Set to Collection
Stefan Vogel <sv@exept.de>
parents: 9247
diff changeset
  3045
    ].
d1fe8655bb97 move #changeCapacityTo: from Set to Collection
Stefan Vogel <sv@exept.de>
parents: 9247
diff changeset
  3046
d1fe8655bb97 move #changeCapacityTo: from Set to Collection
Stefan Vogel <sv@exept.de>
parents: 9247
diff changeset
  3047
    "Created: / 30.10.2001 / 17:56:50 / cg"
d1fe8655bb97 move #changeCapacityTo: from Set to Collection
Stefan Vogel <sv@exept.de>
parents: 9247
diff changeset
  3048
!
d1fe8655bb97 move #changeCapacityTo: from Set to Collection
Stefan Vogel <sv@exept.de>
parents: 9247
diff changeset
  3049
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3050
grow
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3051
    "make the receiver larger"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3052
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3053
    self grow:(self size + self growSize)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3054
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3055
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3056
grow:howBig
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3057
    "change the receivers size"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3058
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3059
    ^ self subclassResponsibility
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3060
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3061
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3062
growSize
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3063
    "return a suitable size increment for growing.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3064
     The default returned here may be (and is) redefined in subclasses."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3065
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3066
    ^ self size max:2
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3067
! !
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3068
10092
70a5cb4e5df0 code cleanup: use #contains/#conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 9919
diff changeset
  3069
11412
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  3070
!Collection methodsFor:'operations'!
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  3071
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  3072
decrementAt:aKey
13317
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3073
    "decrement the value at aKey by one"
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3074
11412
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  3075
    self at:aKey put:(self at:aKey) - 1.
13317
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3076
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3077
    "Modified: / 18-03-2011 / 10:32:04 / cg"
11412
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  3078
!
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  3079
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  3080
incrementAt:aKey
13317
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3081
    "increment the value at aKey by one"
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3082
11412
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  3083
    self at:aKey put:(self at:aKey) + 1.
13317
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3084
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3085
    "Modified: / 18-03-2011 / 10:31:57 / cg"
11412
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  3086
! !
46a2355bc640 +flattening
Claus Gittinger <cg@exept.de>
parents: 11385
diff changeset
  3087
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3088
!Collection methodsFor:'printing & storing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3089
13080
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3090
displayOn:aGCOrStream
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3091
    "print a representation of the receiver on aGCOrStream for display in inspectors etc."
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3092
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3093
    |noneYet total limit|
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3094
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3095
    "/ what a kludge - Dolphin and Squeak mean: printOn: a stream;
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3096
    "/ ST/X (and some old ST80's) mean: draw-yourself on a GC.
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3097
    (aGCOrStream isStream and:[aGCOrStream ~~ Transcript]) ifFalse:[
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3098
        ^ super displayOn:aGCOrStream
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3099
    ].
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3100
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3101
    aGCOrStream nextPutAll:self displayStringName; nextPut:$(.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3102
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3103
    thisContext isRecursive ifTrue:[
3191
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3104
        'Collection [error]: displayString of self referencing collection.' errorPrintCR.
13080
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3105
        aGCOrStream nextPutAll:'"recursive")'.
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3106
        ^ self.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3107
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3108
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3109
    noneYet := true.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3110
    total := 0.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3111
    limit := self maxPrint.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3112
3191
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3113
    self printElementsDo: [:element |
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  3114
        noneYet ifTrue:[
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  3115
            noneYet := false.
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  3116
        ] ifFalse:[
13080
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3117
            aGCOrStream space
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  3118
        ].
13080
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3119
        element displayOn:aGCOrStream.
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  3120
        total := total + 1.
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  3121
        (total > limit) ifTrue:[
13080
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3122
            aGCOrStream nextPutAll:'... )'.
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3123
            ^ self
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  3124
        ]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3125
    ].
13080
f692f6c62c02 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13049
diff changeset
  3126
    aGCOrStream nextPutAll:')'.
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  3127
3191
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3128
    "
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3129
     #(1 2 3 'hello' $a) asOrderedCollection displayString
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3130
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3131
     (Dictionary new at:#hello put:'world'; 
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3132
                     at:#foo put:'bar'; yourself) displayString
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3133
    "
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3134
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3135
    "Modified: / 20.1.1998 / 14:11:03 / stefan"
3964
a3129832fe16 allow redefinition of the displayed class name (displayString)
Claus Gittinger <cg@exept.de>
parents: 3767
diff changeset
  3136
    "Modified: / 2.2.1999 / 22:39:44 / cg"
a3129832fe16 allow redefinition of the displayed class name (displayString)
Claus Gittinger <cg@exept.de>
parents: 3767
diff changeset
  3137
!
a3129832fe16 allow redefinition of the displayed class name (displayString)
Claus Gittinger <cg@exept.de>
parents: 3767
diff changeset
  3138
a3129832fe16 allow redefinition of the displayed class name (displayString)
Claus Gittinger <cg@exept.de>
parents: 3767
diff changeset
  3139
displayStringName
a3129832fe16 allow redefinition of the displayed class name (displayString)
Claus Gittinger <cg@exept.de>
parents: 3767
diff changeset
  3140
    "redefinable helper for displayString"
a3129832fe16 allow redefinition of the displayed class name (displayString)
Claus Gittinger <cg@exept.de>
parents: 3767
diff changeset
  3141
a3129832fe16 allow redefinition of the displayed class name (displayString)
Claus Gittinger <cg@exept.de>
parents: 3767
diff changeset
  3142
    ^ (self class name)
a3129832fe16 allow redefinition of the displayed class name (displayString)
Claus Gittinger <cg@exept.de>
parents: 3767
diff changeset
  3143
a3129832fe16 allow redefinition of the displayed class name (displayString)
Claus Gittinger <cg@exept.de>
parents: 3767
diff changeset
  3144
    "Created: / 2.2.1999 / 22:39:33 / cg"
3191
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3145
!
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3146
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3147
maxPrint
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3148
    "the print-limit; printOn: will try to not produce more output
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3149
     than the limit defined here."
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3150
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3151
    ^ 5000
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3152
!
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3153
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3154
printElementsDo:aBlock
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3155
    "perform aBlock (1 arg) for all elements.
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3156
     Used in #printOn:.
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3157
     Subclasses (e.g. Dictionary) may redefine this."
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3158
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3159
    ^ self do:aBlock
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3160
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3161
    "Created: / 20.1.1998 / 14:11:02 / stefan"
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3162
!
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3163
11599
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3164
printElementsOn:aStream
3191
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3165
    "append a user readable representation of the receiver to aStream.
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3166
     The text appended is not meant to be read back for reconstruction of
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3167
     the receiver. Also, this method limits the size of generated string.
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3168
    "
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3169
3402
d24e9629cdfb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3381
diff changeset
  3170
    |limit firstOne s|
3191
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3171
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3172
    thisContext isRecursive ifTrue:[
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3173
        'Collection [error]: printOn: of self referencing collection.' errorPrintCR.
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3174
        aStream nextPutAll:'#("recursive")'.
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3175
        ^ self
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3176
    ].
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3177
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3178
    aStream nextPut:$(.
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3179
    firstOne := true.
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3180
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3181
    "
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3182
     if aStream is not positionable, create an temporary positionable stream
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3183
     (needed for limit calculation)
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3184
    "
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3185
    aStream isPositionable ifTrue:[
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3186
        s := aStream.
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3187
    ] ifFalse:[
7685
535a69a7cd69 String new -> uninitializedNew: / basicNew:
Claus Gittinger <cg@exept.de>
parents: 7629
diff changeset
  3188
        s := WriteStream on:(String uninitializedNew:50).
3191
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3189
    ].
7054
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7011
diff changeset
  3190
    limit := s position1Based + self maxPrint.
3191
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3191
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3192
    self printElementsDo:[:element |
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3193
        firstOne ifFalse:[
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3194
            s space
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3195
        ] ifTrue:[
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3196
            firstOne := false
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3197
        ].
7054
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7011
diff changeset
  3198
        (s position1Based >= limit) ifTrue:[
3191
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3199
            s ~~ aStream ifTrue:[
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3200
                aStream nextPutAll:(s contents).
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3201
            ].
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3202
            aStream nextPutAll:'...etc...)'.
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3203
            ^ self
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3204
        ] ifFalse:[
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3205
            element printOn:s.
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3206
        ].
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3207
    ].
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3208
    s ~~ aStream ifTrue:[
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3209
        aStream nextPutAll:(s contents).
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3210
    ].
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3211
    aStream nextPut:$)
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3212
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3213
    "
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3214
     #(1 2 3 'hello' $a) printOn:Transcript
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3215
     (Array new:100000) printOn:Transcript
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3216
     (Array new:100000) printOn:Stdout          
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3217
     (Array new:100000) printString size 
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3218
     (Dictionary new at:#hello put:'world'; 
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3219
                     at:#foo put:'bar'; yourself) printOn:Transcript
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3220
    "
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3221
    "
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3222
     |a| 
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3223
     a := Array new:3. 
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3224
     a at:2 put:a.
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3225
     a printOn:Transcript
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3226
    "
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3227
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3228
    "Modified: / 28.1.1997 / 00:39:17 / cg"
390764c0d7b3 Make #printOn: more general (and optimal).
Stefan Vogel <sv@exept.de>
parents: 3124
diff changeset
  3229
    "Modified: / 20.1.1998 / 14:11:03 / stefan"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3230
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3231
11599
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3232
printOn:aStream
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3233
    "append a user readable representation of the receiver to aStream.
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3234
     The text appended is not meant to be read back for reconstruction of
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3235
     the receiver. Also, this method limits the size of generated string.
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3236
    "
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3237
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3238
    thisContext isRecursive ifTrue:[
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3239
        'Collection [error]: printOn: of self referencing collection.' errorPrintCR.
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3240
        aStream nextPutAll:'#("recursive")'.
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3241
        ^ self
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3242
    ].
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3243
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3244
    aStream nextPutAll:self class name.
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3245
    self printElementsOn:aStream.
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3246
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3247
    "
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3248
     #(1 2 3 'hello' $a) printOn:Transcript
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3249
     (Array new:100000) printOn:Transcript
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3250
     (Array new:100000) printOn:Stdout          
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3251
     (Array new:100000) printString size 
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3252
     (Dictionary new at:#hello put:'world'; 
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3253
                     at:#foo put:'bar'; yourself) printOn:Transcript
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3254
    "
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3255
    "
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3256
     |a| 
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3257
     a := Array new:3. 
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3258
     a at:2 put:a.
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3259
     a printOn:Transcript
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3260
    "
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3261
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3262
    "Modified: / 28.1.1997 / 00:39:17 / cg"
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3263
    "Modified: / 20.1.1998 / 14:11:03 / stefan"
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3264
!
4fd6f122b607 printOn: refactored for easier reuse
sr
parents: 11514
diff changeset
  3265
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3266
storeOn:aStream
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
  3267
    "output a printed representation onto the argument, aStream.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
  3268
     The text can be re-read to reconstruct (a copy of) the receiver.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
  3269
     Recursive (i.e. cyclic) collections cannot be stored correctly
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
  3270
     (use storeBinaryOn: to handle those)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3271
5254
f92e89d288bc comments
Claus Gittinger <cg@exept.de>
parents: 5207
diff changeset
  3272
    |notEmpty|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3273
44
b262907c93ea *** empty log message ***
claus
parents: 34
diff changeset
  3274
    thisContext isRecursive ifTrue:[
5498
489dc2e6bd4f RecursiveStoreStringSignal lifted to Object
tm
parents: 5497
diff changeset
  3275
        Object recursiveStoreStringSignal raiseRequestWith:self.
2289
023fa6dbeaf3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2225
diff changeset
  3276
        'Collection [error]: storeOn: of self referencing collection.' errorPrintCR.
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  3277
        aStream nextPutAll:'#recursive'.
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  3278
        ^ self
44
b262907c93ea *** empty log message ***
claus
parents: 34
diff changeset
  3279
    ].
b262907c93ea *** empty log message ***
claus
parents: 34
diff changeset
  3280
b262907c93ea *** empty log message ***
claus
parents: 34
diff changeset
  3281
    aStream nextPutAll:'('.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3282
    aStream nextPutAll:(self class name).
44
b262907c93ea *** empty log message ***
claus
parents: 34
diff changeset
  3283
    aStream nextPutAll:' new'.
5254
f92e89d288bc comments
Claus Gittinger <cg@exept.de>
parents: 5207
diff changeset
  3284
    notEmpty := false.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3285
    self do:[:element |
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  3286
        aStream nextPutAll:' add:'.
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  3287
        element storeOn:aStream.
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  3288
        aStream nextPutAll:';'.
5254
f92e89d288bc comments
Claus Gittinger <cg@exept.de>
parents: 5207
diff changeset
  3289
        notEmpty := true
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3290
    ].
5254
f92e89d288bc comments
Claus Gittinger <cg@exept.de>
parents: 5207
diff changeset
  3291
    notEmpty ifTrue:[aStream nextPutAll:' yourself'].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3292
    aStream nextPut:$)
44
b262907c93ea *** empty log message ***
claus
parents: 34
diff changeset
  3293
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
  3294
    "
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
  3295
     OrderedCollection new storeOn:Transcript
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
  3296
     (1 to:10) storeOn:Transcript
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
  3297
     (Set new add:1; add:'hello'; yourself) storeOn:Transcript
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
  3298
    "
293
31df3850e98c *** empty log message ***
claus
parents: 260
diff changeset
  3299
    "
31df3850e98c *** empty log message ***
claus
parents: 260
diff changeset
  3300
     |s|
31df3850e98c *** empty log message ***
claus
parents: 260
diff changeset
  3301
31df3850e98c *** empty log message ***
claus
parents: 260
diff changeset
  3302
     s := Set new.
31df3850e98c *** empty log message ***
claus
parents: 260
diff changeset
  3303
     s add:1; add:'hello'; add:s.
31df3850e98c *** empty log message ***
claus
parents: 260
diff changeset
  3304
     s storeOn:Transcript
31df3850e98c *** empty log message ***
claus
parents: 260
diff changeset
  3305
    "
1413
4788a0d3d6e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  3306
5254
f92e89d288bc comments
Claus Gittinger <cg@exept.de>
parents: 5207
diff changeset
  3307
    "Modified: / 11.2.2000 / 11:24:56 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3308
! !
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3309
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3310
!Collection methodsFor:'queries'!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3311
13338
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3312
arithmeticMean
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3313
    "arithmetic mean value of all elements in the collection"
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3314
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3315
    ^ self sum / self size
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3316
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3317
    "
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3318
     TestCase assert:( { 1. 2. 3. 4 } arithmeticMean = 2.5).
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3319
     TestCase assert:( { 13. 23. 12. 44. 55 } arithmeticMean closeTo: 29.4).
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3320
     TestCase assert:( { 13. 23. 12. 44. 55 } standardDeviation closeTo: 19.2431).
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3321
    "
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3322
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3323
    "Created: / 13-04-2011 / 16:52:32 / cg"
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3324
!
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3325
13317
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3326
average
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3327
    "average value of all elements in the collection"
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3328
13338
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3329
    ^ self arithmeticMean
13317
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3330
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3331
    "
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3332
     TestCase assert:( { 1. 2. 3. 4 } average = 2.5).
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3333
    "
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3334
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3335
    "Created: / 18-03-2011 / 10:31:04 / cg"
13338
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3336
    "Modified: / 13-04-2011 / 17:09:21 / cg"
13317
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3337
!
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3338
5359
396b77b6f1d2 added #isSortedCollection, #isSortedBy:
Claus Gittinger <cg@exept.de>
parents: 5268
diff changeset
  3339
defaultElement
396b77b6f1d2 added #isSortedCollection, #isSortedBy:
Claus Gittinger <cg@exept.de>
parents: 5268
diff changeset
  3340
    ^  nil
396b77b6f1d2 added #isSortedCollection, #isSortedBy:
Claus Gittinger <cg@exept.de>
parents: 5268
diff changeset
  3341
!
396b77b6f1d2 added #isSortedCollection, #isSortedBy:
Claus Gittinger <cg@exept.de>
parents: 5268
diff changeset
  3342
13338
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3343
geometricMean
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3344
    "geometric mean value of all elements in the collection"
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3345
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3346
    ^ self product raisedTo:(1/self size)
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3347
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3348
    "
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3349
     TestCase assert:( { 1. 2. 3. 4. } geometricMean closeTo: 2.21336).
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3350
     TestCase assert:( { 1. 2. 3. 4. 5 } geometricMean closeTo: 2.60517).
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3351
     TestCase assert:( { 13. 23. 12. 44. 55 } geometricMean closeTo: 24.41932).
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3352
    "
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3353
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3354
    "Created: / 13-04-2011 / 16:53:44 / cg"
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3355
!
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3356
9919
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3357
largest:n
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3358
    "return the n largest elements"
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3359
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3360
    |mySize loopAction actionForFirstN actionForRest 
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3361
     nLargest sz_nLargest minInLargest|
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3362
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3363
    mySize := self size.
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3364
    n > mySize ifTrue:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3365
        self notEnoughElementsError
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3366
    ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3367
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3368
    (n < 50) ifTrue:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3369
        n == 1 ifTrue:[ ^ Array with:self max ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3370
        n == 2 ifTrue:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3371
            |l1 l2|
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3372
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3373
            loopAction := [:el | l1 := el. 
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3374
                                 loopAction := 
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3375
                                        [:el | 
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3376
                                            el > l1 ifTrue:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3377
                                                l2 := l1. l1 := el
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3378
                                            ] ifFalse:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3379
                                                l2 := el
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3380
                                            ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3381
                                            loopAction := actionForRest
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3382
                                        ]
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3383
                          ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3384
            actionForRest := [:el | 
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3385
                                el > l2 ifTrue:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3386
                                    el > l1 ifTrue:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3387
                                        l2 := l1. l1 := el
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3388
                                    ] ifFalse:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3389
                                        l2 := el
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3390
                                    ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3391
                                ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3392
                             ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3393
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3394
            self do:[:el | loopAction value:el ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3395
            ^ Array with:l2 with:l1
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3396
        ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3397
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3398
        nLargest := SortedCollection new:n.
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3399
        sz_nLargest := 0.
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3400
        actionForFirstN := 
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3401
            [:el | 
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3402
                nLargest add:el.
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3403
                sz_nLargest := sz_nLargest + 1.
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3404
                sz_nLargest == n ifTrue:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3405
                    loopAction := actionForRest.
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3406
                    minInLargest := nLargest min.
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3407
                ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3408
            ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3409
        actionForRest := 
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3410
            [:el |
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3411
                el > minInLargest ifTrue:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3412
                    nLargest removeFirst.
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3413
                    nLargest add:el.
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3414
                    minInLargest := nLargest min
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3415
                ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3416
            ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3417
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3418
        loopAction := actionForFirstN.
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3419
        self do:[:el | loopAction value:el ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3420
        ^ nLargest
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3421
    ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3422
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3423
    ^ self asSortedCollection copyTo:n 
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3424
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3425
    "
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3426
     #(10 35 20 45 30 5) largest:1   
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3427
     #(10 35 20 45 30 5) largest:2   
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3428
     #(10 35 20 45 30 5) largest:3   
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3429
     #(10 35 20 45 30 5) largest:5   
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3430
     #(10 35 20 45 30 5) largest:6   
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3431
     #(10 35 20 45 30 5) largest:8
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3432
    "
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3433
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3434
    "
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3435
     |t1 t2 data|
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3436
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3437
     data := (1 to:10000) collect:[:i | Random nextInteger ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3438
     t1 := Time millisecondsToRun:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3439
        40 timesRepeat:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3440
            data asSortedCollection at:3 
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3441
        ]
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3442
     ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3443
     t2 := Time millisecondsToRun:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3444
        40 timesRepeat:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3445
            data largest:3
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3446
        ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3447
     ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3448
     Transcript show:'asSorted-at -> '; show:t1; showCR:'ms'.
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3449
     Transcript show:'largest     -> '; show:t2; showCR:'ms'.
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3450
    "
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3451
!
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3452
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3453
longestCommonPrefix
1246
132a3f6c83bf commentary
Claus Gittinger <cg@exept.de>
parents: 1212
diff changeset
  3454
    "return the longest common prefix of my elements.
132a3f6c83bf commentary
Claus Gittinger <cg@exept.de>
parents: 1212
diff changeset
  3455
     Typically used with string collections."
132a3f6c83bf commentary
Claus Gittinger <cg@exept.de>
parents: 1212
diff changeset
  3456
5532
c1b11318aba3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
  3457
    ^ self longestCommonPrefixIgnoreCase:false
c1b11318aba3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
  3458
c1b11318aba3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
  3459
    "
c1b11318aba3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
  3460
     #('Array' 'ArrayedCollection' 'ArrayOfFoo') longestCommonPrefix 
c1b11318aba3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
  3461
     #('Arra' 'ArrayedCollection' 'ArrayOfFoo') longestCommonPrefix 
c1b11318aba3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
  3462
     #('Arra' 'b' 'c') longestCommonPrefix 
c1b11318aba3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
  3463
     #( (1 2 3 4) (1 2 3) (1 2 3 7) (1 2 3 9 10 11)) longestCommonPrefix
c1b11318aba3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
  3464
    "
c1b11318aba3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
  3465
c1b11318aba3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
  3466
    "Modified: 2.3.1997 / 00:21:41 / cg"
c1b11318aba3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
  3467
!
c1b11318aba3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
  3468
c1b11318aba3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
  3469
longestCommonPrefixIgnoreCase:ignoreCase
6505
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3470
    "return the longest common prefix of my elements (which must be sequenceableCollections).
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3471
     Typically used with string collections, 
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3472
     especially with completion of selectors or filenames."
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3473
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3474
    |longest|
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3475
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3476
    self do:[:eachCollection |
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3477
        longest isNil ifTrue:[
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3478
            longest := eachCollection
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3479
        ] ifFalse:[
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3480
            longest := longest commonPrefixWith:eachCollection ignoreCase:ignoreCase
1246
132a3f6c83bf commentary
Claus Gittinger <cg@exept.de>
parents: 1212
diff changeset
  3481
        ]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3482
    ].
6505
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3483
    ^ longest.
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3484
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3485
"/    |longest try allMatching matchLen|
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3486
"/
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3487
"/    "
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3488
"/     find the longest common prefix
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3489
"/    "
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3490
"/    matchLen := 0.
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3491
"/    self do:[:aName |
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3492
"/        aName size > matchLen ifTrue:[
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3493
"/            matchLen := aName size.
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3494
"/            try := aName
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3495
"/        ]
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3496
"/    ].
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3497
"/
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3498
"/    allMatching := true.
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3499
"/
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3500
"/    [true] whileTrue:[
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3501
"/        allMatching := true.
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3502
"/        self do:[:aName |
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3503
"/            ((ignoreCase not and:[aName startsWith:try])
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3504
"/            or:[ignoreCase and:[aName asLowercase startsWith:try asLowercase]]) ifFalse:[
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3505
"/                allMatching := false
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3506
"/            ]
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3507
"/        ].
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3508
"/        allMatching ifTrue:[
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3509
"/            ^ try
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3510
"/        ].
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3511
"/        matchLen := matchLen - 1.
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3512
"/        matchLen == 0 ifTrue:[^ ''].
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3513
"/        try := try copyTo:matchLen.
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3514
"/    ].
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3515
"/    ^ try
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3516
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3517
    "
5532
c1b11318aba3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
  3518
     #('Array' 'arrayedCollection' 'ARRAYOfFoo') longestCommonPrefixIgnoreCase:true 
c1b11318aba3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
  3519
     #('Array' 'arrayedCollection' 'ARRAYOfFoo') longestCommonPrefixIgnoreCase:false 
c1b11318aba3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
  3520
     #('Array' 'ArayedCollection' 'ARRAYOfFoo') longestCommonPrefixIgnoreCase:false   
6505
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3521
     #('AAA' 'A11' 'AA2') longestCommonPrefixIgnoreCase:false   
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3522
     #('AAA' 'BBB' 'CCC') longestCommonPrefixIgnoreCase:false   
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3523
    "
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3524
!
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3525
6506
6239f9a0c012 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6505
diff changeset
  3526
longestCommonSuffix
6239f9a0c012 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6505
diff changeset
  3527
    "return the longest common suffix (tail) of my elements.
6239f9a0c012 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6505
diff changeset
  3528
     Typically used with string collections."
6239f9a0c012 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6505
diff changeset
  3529
6239f9a0c012 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6505
diff changeset
  3530
    ^ self longestCommonSuffixIgnoreCase:false
13521
3faf9238433e comment/format in: #longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 13512
diff changeset
  3531
3faf9238433e comment/format in: #longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 13512
diff changeset
  3532
    "
3faf9238433e comment/format in: #longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 13512
diff changeset
  3533
     #('abcdefg' '1234cdefg' 'aaaaaadefg') longestCommonSuffix    
3faf9238433e comment/format in: #longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 13512
diff changeset
  3534
    "
3faf9238433e comment/format in: #longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 13512
diff changeset
  3535
3faf9238433e comment/format in: #longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 13512
diff changeset
  3536
    "Modified (comment): / 24-07-2011 / 10:32:15 / cg"
6506
6239f9a0c012 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6505
diff changeset
  3537
!
6239f9a0c012 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6505
diff changeset
  3538
6505
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3539
longestCommonSuffixIgnoreCase:ignoreCase
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3540
    "return the longest common suffix (tail) of my elements
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3541
     (which must be sequenceableCollections)."
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3542
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3543
    |longest|
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3544
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3545
    self do:[:eachCollection |
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3546
        longest isNil ifTrue:[
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3547
            longest := eachCollection
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3548
        ] ifFalse:[
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3549
            longest := longest commonSuffixWith:eachCollection ignoreCase:ignoreCase
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3550
        ]
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3551
    ].
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3552
    ^ longest.
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3553
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3554
    "
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3555
     #('Array' 'ByteArray' 'BigArray') longestCommonSuffixIgnoreCase:true 
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3556
     #('AAA' 'BBBAA' 'CCCAAAA') longestCommonSuffixIgnoreCase:false       
a86bdc3d8e66 better longestCommonPrefix; added longestCommonSuffix
Claus Gittinger <cg@exept.de>
parents: 6411
diff changeset
  3557
     #('AAA' 'BBB' 'CCC') longestCommonSuffixIgnoreCase:false             
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3558
    "
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5532
diff changeset
  3559
!
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5532
diff changeset
  3560
7821
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3561
max
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3562
    "return the maximum value in the receiver collection,
8182
e99d0f95c925 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
  3563
     using #< to compare elements.
7821
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3564
     Raises an error, if the receiver is empty."
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3565
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3566
    self emptyCheck.
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3567
12945
Claus Gittinger <cg@exept.de>
parents: 12944
diff changeset
  3568
    ^ self 
Claus Gittinger <cg@exept.de>
parents: 12944
diff changeset
  3569
        inject:nil
Claus Gittinger <cg@exept.de>
parents: 12944
diff changeset
  3570
        into:[:maxSoFar :this | 
Claus Gittinger <cg@exept.de>
parents: 12944
diff changeset
  3571
            (maxSoFar isNil or:[maxSoFar < this]) 
Claus Gittinger <cg@exept.de>
parents: 12944
diff changeset
  3572
                ifTrue:[this]
Claus Gittinger <cg@exept.de>
parents: 12944
diff changeset
  3573
                ifFalse:[maxSoFar]
Claus Gittinger <cg@exept.de>
parents: 12944
diff changeset
  3574
        ]
7821
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3575
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3576
    "
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3577
     #(15 1 -9 10 5) max  
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3578
     (1 to:15) max  
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3579
     (-1 to:-15 by:-1) max  
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3580
     (-1 to:-15 by:-4) max  
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3581
     (0 to:15 by:4) max     
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3582
    "
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3583
12945
Claus Gittinger <cg@exept.de>
parents: 12944
diff changeset
  3584
    "Modified: / 11-07-2010 / 17:05:25 / cg"
7821
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3585
!
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3586
13040
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3587
maxApplying:aBlock
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3588
    "return the maximum value from applying aBlock to each element in the receiver collection,
13317
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3589
     using aBlock to compare elements.
13040
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3590
     Raises an error, if the receiver is empty."
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3591
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3592
    self emptyCheck.
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3593
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3594
    ^ self 
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3595
        inject:nil
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3596
        into:[:maxSoFar :this | 
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3597
            |v|
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3598
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3599
            v := aBlock value:this.
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3600
            (maxSoFar isNil or:[maxSoFar < v]) 
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3601
                ifTrue:[v]
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3602
                ifFalse:[maxSoFar]
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3603
        ]
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3604
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3605
    "
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3606
     #(15 1 -9 -20 10 5) max                        -> 15
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3607
     #(15 1 -9 -20 10 5) maxApplying:[:el | el abs] -> 20
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3608
    "
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3609
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3610
    "Created: / 23-08-2010 / 11:02:50 / cg"
13317
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3611
    "Modified: / 18-03-2011 / 10:32:29 / cg"
13040
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3612
!
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3613
7821
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3614
min
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3615
    "return the minimum value in the receiver collection,
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3616
     using < to compare elements.
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3617
     Raises an error, if the receiver is empty."
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3618
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3619
    self emptyCheck.
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3620
12945
Claus Gittinger <cg@exept.de>
parents: 12944
diff changeset
  3621
    ^ self 
Claus Gittinger <cg@exept.de>
parents: 12944
diff changeset
  3622
        inject:nil
Claus Gittinger <cg@exept.de>
parents: 12944
diff changeset
  3623
        into:[:minSoFar :this | 
Claus Gittinger <cg@exept.de>
parents: 12944
diff changeset
  3624
            (minSoFar isNil or:[this < minSoFar]) 
Claus Gittinger <cg@exept.de>
parents: 12944
diff changeset
  3625
                ifTrue:[this]
Claus Gittinger <cg@exept.de>
parents: 12944
diff changeset
  3626
                ifFalse:[minSoFar]
Claus Gittinger <cg@exept.de>
parents: 12944
diff changeset
  3627
        ]
7821
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3628
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3629
    "
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3630
     #(15 1 -9 10 5) min 
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3631
     (1 to:15) min        
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3632
     (-1 to:-15 by:-1) min  
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3633
     (-1 to:-15 by:-4) min  
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3634
    "
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3635
12945
Claus Gittinger <cg@exept.de>
parents: 12944
diff changeset
  3636
    "Modified: / 11-07-2010 / 17:06:38 / cg"
7821
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3637
!
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3638
13040
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3639
minApplying:aBlock
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3640
    "return the minimum value from applying aBlock to each element in the receiver collection,
13317
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3641
     using aBlock to compare elements.
13040
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3642
     Raises an error, if the receiver is empty."
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3643
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3644
    self emptyCheck.
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3645
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3646
    ^ self 
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3647
        inject:nil
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3648
        into:[:minSoFar :this |
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3649
            |v|
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3650
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3651
            v := aBlock value:this.
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3652
            (minSoFar isNil or:[v < minSoFar]) 
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3653
                ifTrue:[v]
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3654
                ifFalse:[minSoFar]
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3655
        ]
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3656
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3657
    "
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3658
     #(15 -1 -9 10 5) min                        -> -9
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3659
     #(15 -1 -9 10 5) minApplying:[:el | el abs] -> 1
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3660
    "
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3661
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3662
    "Created: / 23-08-2010 / 11:01:42 / cg"
13317
1230e1aa7042 comment/format in:6 methods
Claus Gittinger <cg@exept.de>
parents: 13316
diff changeset
  3663
    "Modified: / 18-03-2011 / 10:32:33 / cg"
13040
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3664
!
Claus Gittinger <cg@exept.de>
parents: 13002
diff changeset
  3665
7821
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3666
minMax
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3667
    "return the minimum and maximum values in the receiver collection
8182
e99d0f95c925 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
  3668
     as a two element array, using #< to compare elements.
7821
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3669
     Raises an error, if the receiver is empty."
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3670
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3671
    |min max|
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3672
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3673
    self emptyCheck.
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3674
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3675
    min := max := nil.
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3676
    self do:[:each |
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3677
        min isNil ifTrue:[
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3678
            min := max := each
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3679
        ] ifFalse:[
8182
e99d0f95c925 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
  3680
            max < each ifTrue:[
7821
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3681
                max := each
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3682
            ] ifFalse:[
8182
e99d0f95c925 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
  3683
                each < min ifTrue:[
7821
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3684
                    min := each
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3685
                ]
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3686
            ]
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3687
        ]
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3688
    ].
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3689
    ^ Array with:min with:max
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3690
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3691
    "
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3692
     #(15 1 -9 10 5) minMax  
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3693
     (1 to:15) minMax  
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3694
     (-1 to:-15 by:-1) minMax  
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3695
     (-1 to:-15 by:-4) minMax  
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3696
     (0 to:15 by:4) minMax     
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3697
    "
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3698
!
a8fd1f2b07dd +minMax
Claus Gittinger <cg@exept.de>
parents: 7807
diff changeset
  3699
9919
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3700
nthLargest:n
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3701
    "return the n-largest element"
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3702
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3703
    ^ (self largest:n) first
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3704
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3705
    "
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3706
     #(10 35 20 45 30 5) nthLargest:1
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3707
     #(10 35 20 45 30 5) nthLargest:2
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3708
     #(10 35 20 45 30 5) nthLargest:3
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3709
     #(10 35 20 45 30 5) nthLargest:5
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3710
     #(10 35 20 45 30 5) nthLargest:6 
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3711
     #(10 35 20 45 30 5) nthLargest:8
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3712
    "
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3713
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3714
    "
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3715
     |t1 t2 data|
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3716
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3717
     data := (1 to:10000) collect:[:i | Random nextInteger ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3718
     t1 := Time millisecondsToRun:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3719
        40 timesRepeat:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3720
            data asSortedCollection at:6 
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3721
        ]
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3722
     ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3723
     t2 := Time millisecondsToRun:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3724
        40 timesRepeat:[
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3725
            data nthLargest:6 
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3726
        ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3727
     ].
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3728
     Transcript show:'asSorted-at -> '; show:t1; showCR:'ms'.
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3729
     Transcript show:'nthMost     -> '; show:t2; showCR:'ms'.
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3730
    "
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3731
!
dd9d3f24c6d0 optimized code for n-largest
Claus Gittinger <cg@exept.de>
parents: 9843
diff changeset
  3732
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5532
diff changeset
  3733
size
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5532
diff changeset
  3734
    "return the number of elements in the receiver.
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5532
diff changeset
  3735
     This is usually redefined in subclasses for more performance."
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5532
diff changeset
  3736
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5532
diff changeset
  3737
    |count "{ Class: SmallInteger }" |
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5532
diff changeset
  3738
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5532
diff changeset
  3739
    count := 0.
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5532
diff changeset
  3740
    self do:[:element |
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  3741
        count := count + 1
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5532
diff changeset
  3742
    ].
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5532
diff changeset
  3743
    ^ count
6547
86e092527dd1 +#speciesForAdding; better #collect:with: for fixed size collections
Claus Gittinger <cg@exept.de>
parents: 6511
diff changeset
  3744
!
86e092527dd1 +#speciesForAdding; better #collect:with: for fixed size collections
Claus Gittinger <cg@exept.de>
parents: 6511
diff changeset
  3745
86e092527dd1 +#speciesForAdding; better #collect:with: for fixed size collections
Claus Gittinger <cg@exept.de>
parents: 6511
diff changeset
  3746
speciesForAdding
86e092527dd1 +#speciesForAdding; better #collect:with: for fixed size collections
Claus Gittinger <cg@exept.de>
parents: 6511
diff changeset
  3747
     "like species, but redefined for collections which cannot grow easily.
86e092527dd1 +#speciesForAdding; better #collect:with: for fixed size collections
Claus Gittinger <cg@exept.de>
parents: 6511
diff changeset
  3748
      Used by functions which create a growing collection (see collect:with:, for example)"
86e092527dd1 +#speciesForAdding; better #collect:with: for fixed size collections
Claus Gittinger <cg@exept.de>
parents: 6511
diff changeset
  3749
86e092527dd1 +#speciesForAdding; better #collect:with: for fixed size collections
Claus Gittinger <cg@exept.de>
parents: 6511
diff changeset
  3750
    ^ self species
13338
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3751
!
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3752
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3753
standardDeviation
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3754
    "standard deviation value of all elements in the collection"
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3755
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3756
    |m sumDeltaSquares|
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3757
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3758
    m := self arithmeticMean.
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3759
    sumDeltaSquares := self inject:0 into:[:sum :this | sum + ((this - m) squared)].
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3760
    ^ (sumDeltaSquares / (self size - 1)) sqrt
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3761
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3762
    "
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3763
     TestCase assert:( { 1. 2. 3. 4 } arithmeticMean = 2.5).
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3764
     TestCase assert:( { 13. 23. 12. 44. 55 } arithmeticMean closeTo: 29.4).
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3765
     TestCase assert:( { 13. 23. 12. 44. 55 } standardDeviation closeTo: 19.2431).
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3766
    "
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3767
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
  3768
    "Created: / 13-04-2011 / 17:58:47 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3769
! !
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3770
11706
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3771
!Collection methodsFor:'searching'!
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3772
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3773
findFirst:aBlock
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3774
    "find the index of the first element, for which evaluation of the argument, aBlock
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3775
     returns true; return its index or 0 if none detected.
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3776
     This is much like #detect, however, here an INDEX is returned,
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3777
     while #detect returns the element."
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3778
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3779
    ^ self findFirst:aBlock ifNone:0
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3780
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3781
    "
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3782
     #(1 2 3 4 5 6) findFirst:[:x | (x >= 3)]
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3783
     #(1 2 3 4 5 6) findFirst:[:x | (x >= 3) and:[x even]]
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3784
     #(1 2 3 4 5 6) findFirst:[:x | (x >= 8)]
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3785
     'one.two.three' findFirst:[:c | (c == $.)]
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3786
     '__one.two.three' findFirst:[:c | (c ~= $_)]
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3787
     'one.two.three' findFirst:[:c | (c ~= $_)]
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3788
    "
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3789
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3790
    "Modified: / 21.10.1998 / 18:48:10 / cg"
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3791
! !
e88da0e05ae4 findFirst: refactored
Claus Gittinger <cg@exept.de>
parents: 11599
diff changeset
  3792
7168
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3793
!Collection methodsFor:'set operations'!
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3794
7169
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3795
\ aCollection
8606
6612bbac2d71 comments
Claus Gittinger <cg@exept.de>
parents: 8577
diff changeset
  3796
    "return a new set containing all elements of the receiver, 
6612bbac2d71 comments
Claus Gittinger <cg@exept.de>
parents: 8577
diff changeset
  3797
     which are NOT also contained in the aCollection
7168
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3798
     For large collections you better use a Set for aCollection"
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3799
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3800
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3801
    |newCollection|
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3802
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3803
    newCollection := self speciesForAdding new.
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3804
    self do:[:element |
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3805
        (aCollection includes:element) ifFalse:[
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3806
            newCollection add:element
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3807
        ]
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3808
    ].
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3809
    ^ newCollection
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3810
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3811
    "
7169
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3812
     #(0 1 2 3 4 5 6 7 8 9) \ #(1 2 3) asSet  
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3813
     #(0 1 2 3 4 5 6 7 8 9) \ #(1 2 3)
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3814
    ('hello' \ 'l') asString
7168
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3815
    "
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3816
!
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3817
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3818
intersect:aCollection
8606
6612bbac2d71 comments
Claus Gittinger <cg@exept.de>
parents: 8577
diff changeset
  3819
    "return a new set containing all elements of the receiver, 
6612bbac2d71 comments
Claus Gittinger <cg@exept.de>
parents: 8577
diff changeset
  3820
     which are also contained in the argument collection.
7168
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3821
     For large collections you better use a Set for self"
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3822
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3823
    |newCollection|
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3824
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3825
    newCollection := self speciesForAdding new.
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3826
    aCollection do:[:element |
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3827
        (self includes:element) ifTrue:[
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3828
            newCollection add:element
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3829
        ]
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3830
    ].
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3831
    ^ newCollection
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3832
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3833
    "
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3834
     #(0 1 2 3 4 5 6 7 8 9) asSet intersect:#(1 2 3 11)   
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3835
     #(0 1 2 3 4 5 6 7 8 9) intersect:#(1 2 3 11)   
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3836
    "
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3837
!
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3838
7169
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3839
union:aCollection
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3840
    "return a new set containing all elements of the receiver 
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3841
     plus those of the aCollection"
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3842
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3843
    |newCollection|
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3844
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3845
    newCollection := self speciesForAdding new.
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3846
    newCollection addAll:self.
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3847
    newCollection addAll:aCollection.
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3848
    ^ newCollection
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3849
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3850
    "
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3851
     #(0 2 4 6 8) union:#(1 3 5 7)   
11384
ab037291f4fa Comments
Stefan Vogel <sv@exept.de>
parents: 11331
diff changeset
  3852
     #(0 2 4 6 8) union:#(0 1 3 5 7)   
7169
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3853
    "
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3854
!
74576ccad3c0 Clean up set operations
Stefan Vogel <sv@exept.de>
parents: 7168
diff changeset
  3855
7168
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3856
xor:aCollection
8606
6612bbac2d71 comments
Claus Gittinger <cg@exept.de>
parents: 8577
diff changeset
  3857
    "return a new set containing all elements, 
6612bbac2d71 comments
Claus Gittinger <cg@exept.de>
parents: 8577
diff changeset
  3858
     which are contained in either the receiver or aCollection, but not in both.
6612bbac2d71 comments
Claus Gittinger <cg@exept.de>
parents: 8577
diff changeset
  3859
6612bbac2d71 comments
Claus Gittinger <cg@exept.de>
parents: 8577
diff changeset
  3860
     For large collections you better use Sets for both self and aCollection"
7168
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3861
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3862
    |newCollection|
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3863
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3864
    newCollection := self speciesForAdding new.
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3865
    aCollection do:[:element |
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3866
        (self includes:element) ifFalse:[
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3867
            newCollection add:element
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3868
        ]
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3869
    ].
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3870
    self do:[:element|
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3871
        (aCollection includes:element) ifFalse:[
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3872
            newCollection add:element.
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3873
        ].
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3874
    ].
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3875
        
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3876
    ^ newCollection
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3877
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3878
    "
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3879
     #(0 1 2 3 4 5 6 7 8 9) xor:#(1 2 3 11)   
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3880
    "
12430
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
  3881
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
  3882
    "
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
  3883
     |c1 c2|
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
  3884
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
  3885
     c1 := #( foo bar baz baloo ).
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
  3886
     c2 := #( foe bar banana baloo ).
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
  3887
     c1 symmetricDifference:c2.         
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
  3888
     self assert:(c1 symmetricDifference:c2) asSet = (c2 symmetricDifference:c1) asSet
b42fb161fca5 comment/format in: #xor:
Claus Gittinger <cg@exept.de>
parents: 12429
diff changeset
  3889
    "
7168
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3890
! !
e5400f46d437 Move set operations (#intersect: et al) to Collection
Stefan Vogel <sv@exept.de>
parents: 7164
diff changeset
  3891
10811
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3892
!Collection methodsFor:'sorting & reordering'!
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3893
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3894
topologicalSort
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3895
    "Sort a partial ordered collection.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3896
     The receiver consists of tupels defining a partial order.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3897
     Use the algorithm by R. E. Tarjan from 1972.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3898
     Answer an OrderedCollection containing the sorted items"
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3899
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3900
    |graph roots sorted count|
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3901
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3902
    "create a graph.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3903
     For each node there is an entry containing the number of references
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3904
     and a list of arcs to other nodes"
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3905
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3906
    graph := Dictionary new.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3907
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3908
    self do:[:eachTuple| 
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3909
        |node1|
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3910
        node1 := eachTuple first.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3911
        graph at:node1 ifAbsentPut:[OrderedCollection with:0].
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3912
        1 to:(eachTuple size-1) do:[:i| 
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3913
            |node2 n2|
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3914
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3915
            node1 := eachTuple at:i.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3916
            node2 := eachTuple at:i+1.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3917
            "add the node"
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3918
            graph at:node2 ifAbsentPut:[OrderedCollection with:0].
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3919
            "add an arc from node1 to node2"
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3920
            (graph at:node1) add:node2.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3921
            "increment count on incoming arcs of node2"
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3922
            n2 := graph at:node2.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3923
            n2 at:1 put:(n2 first + 1).
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3924
        ].
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3925
    ]. 
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3926
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3927
    "now find the root nodes (having zero incoming arcs)"
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3928
    roots := OrderedCollection new.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3929
    graph keysAndValuesDo:[:eachKey :eachValue|
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3930
        eachValue first = 0 ifTrue:[
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3931
            roots add:eachKey
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3932
        ].
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3933
    ].
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3934
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3935
    "for each root, out it to the sorted list and remove it from the graph.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3936
     This may cause referenced nodes to be moved to the root"
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3937
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3938
    sorted := OrderedCollection new:graph size.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3939
    [roots notEmpty] whileTrue:[  
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3940
        |root eachEntry|
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3941
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3942
        root := roots removeFirst.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3943
        sorted add:root.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3944
        eachEntry := graph removeKey:root.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3945
        2 to:eachEntry size do:[:i|
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3946
            |eachChild eachChildGraph|
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3947
            eachChild := eachEntry at:i.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3948
            eachChildGraph := graph at:eachChild.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3949
            count := eachChildGraph at:1.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3950
            eachChildGraph at:1 put:(count - 1).
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3951
            count = 1 ifTrue:[
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3952
                roots add:eachChild.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3953
            ].
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3954
        ].
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3955
    ].
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3956
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3957
    graph notEmpty ifTrue:[
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3958
        self error:'cycle in ordering' mayProceed:true.
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3959
    ].
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3960
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3961
    ^ sorted
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3962
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3963
    "
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3964
     #((1 2) (1 3) (3 2)) topologicalSort
11384
ab037291f4fa Comments
Stefan Vogel <sv@exept.de>
parents: 11331
diff changeset
  3965
     #((1 2) (1 3) (3 2) (4)) topologicalSort
ab037291f4fa Comments
Stefan Vogel <sv@exept.de>
parents: 11331
diff changeset
  3966
ab037291f4fa Comments
Stefan Vogel <sv@exept.de>
parents: 11331
diff changeset
  3967
    with cycles:
10811
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3968
     #((1 2) (1 3) (3 1)) topologicalSort
11384
ab037291f4fa Comments
Stefan Vogel <sv@exept.de>
parents: 11331
diff changeset
  3969
     #((1 2) (2 3) (3 1)) topologicalSort
ab037291f4fa Comments
Stefan Vogel <sv@exept.de>
parents: 11331
diff changeset
  3970
     #((1 2) (2 3) (3 4) (4 1)) topologicalSort
11385
c3d908e81ec7 changed #topologicalSort - comment
Stefan Vogel <sv@exept.de>
parents: 11384
diff changeset
  3971
     #((1 1) (1 2) (1 3) (3 2) (4)) topologicalSort
10811
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3972
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3973
     (Smalltalk allClasses collect:[:eachClass| 
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3974
        Array with:eachClass superclass with:eachClass
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3975
     ]) topologicalSort
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3976
    "
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3977
! !
e0957b46d27a New: #topologicalSort
Stefan Vogel <sv@exept.de>
parents: 10798
diff changeset
  3978
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3979
!Collection methodsFor:'testing'!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3980
13870
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  3981
allElementsHaveTheSameValue
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  3982
    "true if all elements of the receiver have the same value"
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  3983
13872
073df93a253b added: #sameValuesComputedBy:
Claus Gittinger <cg@exept.de>
parents: 13871
diff changeset
  3984
    ^ self sameValuesComputedBy:[:el | el]
13870
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  3985
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  3986
    "
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  3987
     #(1 2 3 5 6 7 8 9) allElementsHaveTheSameValue
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  3988
     #(1 1 1 1 1 1) allElementsHaveTheSameValue
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  3989
     #(1 1 1.0 1.0 1) allElementsHaveTheSameValue
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  3990
    "
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  3991
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  3992
    "Created: / 21-12-2011 / 15:54:08 / cg"
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  3993
!
cee65ca9b95d added: #allElementsHaveTheSameValue
Claus Gittinger <cg@exept.de>
parents: 13773
diff changeset
  3994
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3995
capacity
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3996
    "return the number of elements, that the receiver is
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3997
     prepared to take. For most collections, this is the actual
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3998
     size. However, some have more space preallocated to allow
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3999
     for faster adding of elements. 
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4000
     Not used by the system; added for ST-80 compatibility."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4001
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4002
    ^ self size
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4003
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4004
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4005
includes:anElement
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4006
    "return true, if an object equal to the argument, anObject is in the list.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4007
     This compares using #= (i.e. it does not look for the object itself,
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4008
     instead, one that compares equal).
7807
da43f0f7237e comments
Claus Gittinger <cg@exept.de>
parents: 7752
diff changeset
  4009
     See #includesIdentical: when identity is asked for.
da43f0f7237e comments
Claus Gittinger <cg@exept.de>
parents: 7752
diff changeset
  4010
     This is a *very* slow fallback - many subclasses redefine this for performance."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4011
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4012
    self do:[:element |
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  4013
        (anElement = element) ifTrue:[^ true].
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4014
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4015
    ^ false
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4016
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4017
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4018
includesAll:aCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4019
    "return true, if the the receiver includes all elements of
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4020
     the argument, aCollection; false if any is missing.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4021
     Notice: this method has O-square runtime behavior and may be
10092
70a5cb4e5df0 code cleanup: use #contains/#conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 9919
diff changeset
  4022
             slow for big receivers/args. 
70a5cb4e5df0 code cleanup: use #contains/#conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 9919
diff changeset
  4023
             Think about using a Set, or Dictionary."
70a5cb4e5df0 code cleanup: use #contains/#conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 9919
diff changeset
  4024
70a5cb4e5df0 code cleanup: use #contains/#conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 9919
diff changeset
  4025
    ^ aCollection conform:[:element | (self includes:element)]
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4026
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4027
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4028
     #(1 2 3 4 5 6 7) includesAll:#(1 2 3)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4029
     #('hello' 'there' 'world') includesAll:#('hello' 'world')
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4030
     #(1 2 3 4 5 6 7) includesAll:#(7 8 9)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4031
    "
10092
70a5cb4e5df0 code cleanup: use #contains/#conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 9919
diff changeset
  4032
70a5cb4e5df0 code cleanup: use #contains/#conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 9919
diff changeset
  4033
    "Modified: / 13-10-2006 / 12:54:50 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4034
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4035
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4036
includesAny:aCollection
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4037
    "return true, if the the receiver includes any elements of
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4038
     the argument, aCollection; false if it includes none.
7807
da43f0f7237e comments
Claus Gittinger <cg@exept.de>
parents: 7752
diff changeset
  4039
     Notice: this method has O^2(N) runtime behavior and may be
da43f0f7237e comments
Claus Gittinger <cg@exept.de>
parents: 7752
diff changeset
  4040
             slow for big receivers/args. 
da43f0f7237e comments
Claus Gittinger <cg@exept.de>
parents: 7752
diff changeset
  4041
             Think about using a Set or Dictionary. 
da43f0f7237e comments
Claus Gittinger <cg@exept.de>
parents: 7752
diff changeset
  4042
             Some speedup is also possible, by arranging highly
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  4043
             probable elements towards the beginning of aCollection,
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  4044
             to avoid useless searches."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4045
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4046
    aCollection do:[:element |
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  4047
        (self includes:element) ifTrue:[^ true].
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4048
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4049
    ^ false
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4050
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4051
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4052
     #(1 2 3 4 5 6 7) includesAny:#(1 2 3)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4053
     #('hello' 'there' 'world') includesAny:#('hello' 'world')
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4054
     #(1 2 3 4 5 6 7) includesAny:#(7 8 9)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4055
     #(1 2 3 4 5 6 7) includesAny:#(8 9 10)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4056
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4057
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4058
10504
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4059
includesAnyIdentical:aCollection
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4060
    "return true, if the the receiver includes any elements of
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4061
     the argument, aCollection; false if it includes none.
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4062
     Use identity compare for comparing.
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4063
     Notice: this method has O^2(N) runtime behavior and may be
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4064
             slow for big receivers/args. 
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4065
             Think about using a Set or Dictionary. 
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4066
             Some speedup is also possible, by arranging highly
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4067
             probable elements towards the beginning of aCollection,
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4068
             to avoid useless searches."
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4069
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4070
    aCollection do:[:element |
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4071
        (self includesIdentical:element) ifTrue:[^ true].
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4072
    ].
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4073
    ^ false
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4074
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4075
    "
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4076
     #(1 2 3 4 5 6 7) includesAnyIdentical:#(1 2 3)
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4077
     #('hello' 'there' 'world') includesAnyIdentical:#('hello' 'world')
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4078
     #(1 2 3 4 5 6 7) includesAnyIdentical:#(7 8 9)
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4079
     #(1 2 3 4 5 6 7) includesAnyIdentical:#(8 9 10)
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4080
    "
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4081
!
0869e0f9b3cb New: #includesAnyIdentical:
Stefan Vogel <sv@exept.de>
parents: 10092
diff changeset
  4082
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4083
includesIdentical:anElement
7807
da43f0f7237e comments
Claus Gittinger <cg@exept.de>
parents: 7752
diff changeset
  4084
    "return true, if the argument, anObject is in the collection.
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4085
     This compares using #== (i.e. object identity).
7807
da43f0f7237e comments
Claus Gittinger <cg@exept.de>
parents: 7752
diff changeset
  4086
     See #includes: when equality is asked for.
da43f0f7237e comments
Claus Gittinger <cg@exept.de>
parents: 7752
diff changeset
  4087
     This is a *very* slow fallback - many subclasses redefine this for performance."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4088
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4089
    self do:[:element |
6135
ba749c6a3d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  4090
        (anElement == element) ifTrue:[^ true].
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4091
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4092
    ^ false
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4093
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4094
9005
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4095
isCollection
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4096
    "return true, if the receiver is some kind of collection;
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4097
     true is returned here - the method is redefined from Object."
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4098
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4099
    ^ true
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4100
!
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4101
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4102
isEmpty
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4103
    "return true, if the receiver is empty"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4104
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4105
    ^ self size == 0
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4106
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4107
6181
5876cc789e41 + isEmptyOrNil
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
  4108
isEmptyOrNil
8833
717b01292d0e comments
Stefan Vogel <sv@exept.de>
parents: 8751
diff changeset
  4109
    "return true if I am nil or an empty collection - true here, if the receivers size is 0,
717b01292d0e comments
Stefan Vogel <sv@exept.de>
parents: 8751
diff changeset
  4110
     (from Sqeak)"
6181
5876cc789e41 + isEmptyOrNil
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
  4111
5876cc789e41 + isEmptyOrNil
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
  4112
    ^ self isEmpty
5876cc789e41 + isEmptyOrNil
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
  4113
5876cc789e41 + isEmptyOrNil
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
  4114
    "Created: / 13.11.2001 / 13:17:12 / cg"
6182
2b992cf865bc comment
Claus Gittinger <cg@exept.de>
parents: 6181
diff changeset
  4115
    "Modified: / 13.11.2001 / 13:28:35 / cg"
6181
5876cc789e41 + isEmptyOrNil
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
  4116
!
5876cc789e41 + isEmptyOrNil
Claus Gittinger <cg@exept.de>
parents: 6149
diff changeset
  4117
6068
1d5ca1175f3f added #isNilOrEmptyCollection
Claus Gittinger <cg@exept.de>
parents: 6052
diff changeset
  4118
isNilOrEmptyCollection
8833
717b01292d0e comments
Stefan Vogel <sv@exept.de>
parents: 8751
diff changeset
  4119
    "return true if I am nil or an empty collection - false here.
717b01292d0e comments
Stefan Vogel <sv@exept.de>
parents: 8751
diff changeset
  4120
     Obsolete, use isEmptyOrNil."
717b01292d0e comments
Stefan Vogel <sv@exept.de>
parents: 8751
diff changeset
  4121
717b01292d0e comments
Stefan Vogel <sv@exept.de>
parents: 8751
diff changeset
  4122
    <resource:#obsolete>
6068
1d5ca1175f3f added #isNilOrEmptyCollection
Claus Gittinger <cg@exept.de>
parents: 6052
diff changeset
  4123
1d5ca1175f3f added #isNilOrEmptyCollection
Claus Gittinger <cg@exept.de>
parents: 6052
diff changeset
  4124
    ^ self isEmpty
6182
2b992cf865bc comment
Claus Gittinger <cg@exept.de>
parents: 6181
diff changeset
  4125
2b992cf865bc comment
Claus Gittinger <cg@exept.de>
parents: 6181
diff changeset
  4126
    "Modified: / 13.11.2001 / 13:27:55 / cg"
6068
1d5ca1175f3f added #isNilOrEmptyCollection
Claus Gittinger <cg@exept.de>
parents: 6052
diff changeset
  4127
!
1d5ca1175f3f added #isNilOrEmptyCollection
Claus Gittinger <cg@exept.de>
parents: 6052
diff changeset
  4128
9005
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4129
isNonByteCollection
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4130
    "return true, if the receiver is some kind of collection, but not a String, ByteArray etc.;
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4131
     true is returned here - the method is redefined from Object."
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4132
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4133
    ^ true
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4134
!
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4135
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4136
isSorted
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4137
    "return true, if the receiver is sorted.
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4138
     Collections which hold their elements in sorted order
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4139
     should return true. Some algorithms (quicksort) degenerate when 
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4140
     operating on sorted collections and can be avoided if this information
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4141
     is given. The default returned here (false) should not hurt.
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4142
     I.e. you should NEVER depend on that in your application."
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4143
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4144
    ^ false
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4145
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4146
    "Created: 13.4.1996 / 12:35:55 / cg"
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4147
!
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4148
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4149
isSortedBy:aBlock
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4150
    "return true, if my elements are sorted (already) by the given criterion (sortBlock).
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4151
     Collections which hold their elements in sorted order
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4152
     should return true. Some algorithms (quicksort) degenerate when 
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4153
     operating on sorted collections and can be avoided if this information
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4154
     is given. The default returned here (false) should not hurt.
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4155
     I.e. you should NEVER depend on that in your application."
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4156
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4157
    ^ false
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4158
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4159
!
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4160
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4161
isSortedCollection
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4162
    "return true, if the receiver is a sortedCollection."
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4163
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4164
    ^ false
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4165
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4166
!
b82aa6bdc487 #isNonByteCollection
Stefan Vogel <sv@exept.de>
parents: 8893
diff changeset
  4167
9247
efee0d15fb2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9159
diff changeset
  4168
isWeakCollection
efee0d15fb2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9159
diff changeset
  4169
    "return true, if the receiver has weak references to its elements."
efee0d15fb2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9159
diff changeset
  4170
efee0d15fb2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9159
diff changeset
  4171
    ^ false
efee0d15fb2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9159
diff changeset
  4172
!
efee0d15fb2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9159
diff changeset
  4173
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4174
notEmpty
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4175
    "return true, if the receiver is not empty"
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4176
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4177
    ^ self isEmpty not
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4178
!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4179
6932
1e1d296d4747 + #notEmptyOrNil
penk
parents: 6869
diff changeset
  4180
notEmptyOrNil
1e1d296d4747 + #notEmptyOrNil
penk
parents: 6869
diff changeset
  4181
    "Squeak compatibility:
1e1d296d4747 + #notEmptyOrNil
penk
parents: 6869
diff changeset
  4182
     return true if I am neither nil nor an empty collection."
1e1d296d4747 + #notEmptyOrNil
penk
parents: 6869
diff changeset
  4183
1e1d296d4747 + #notEmptyOrNil
penk
parents: 6869
diff changeset
  4184
    ^ self notEmpty
1e1d296d4747 + #notEmptyOrNil
penk
parents: 6869
diff changeset
  4185
!
1e1d296d4747 + #notEmptyOrNil
penk
parents: 6869
diff changeset
  4186
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4187
occurrencesOf:anElement
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4188
    "return the number of occurrences of the argument, anElement in
5048
b1e10ce753fd comment
Claus Gittinger <cg@exept.de>
parents: 4985
diff changeset
  4189
     the receiver. Uses #= (i.e. equality) compare."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4190
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4191
    |count "{ Class: SmallInteger }" |
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4192
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4193
    count := 0.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4194
    self do:[:element |
5048
b1e10ce753fd comment
Claus Gittinger <cg@exept.de>
parents: 4985
diff changeset
  4195
        (anElement = element) ifTrue:[
b1e10ce753fd comment
Claus Gittinger <cg@exept.de>
parents: 4985
diff changeset
  4196
            count := count + 1
b1e10ce753fd comment
Claus Gittinger <cg@exept.de>
parents: 4985
diff changeset
  4197
        ].
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4198
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4199
    ^ count
8274
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4200
!
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4201
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4202
occurrencesOfAny:aCollectionOfElements
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4203
    "return the number of occurrences of any in aCollectionOfElements in the receiver. 
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4204
     Uses #= (i.e. equality) compare.
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4205
     Should be redefined in subclass(es) if ever used heavily."
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4206
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4207
    |count "{ Class: SmallInteger }" |
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4208
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4209
    count := 0.
8275
1f2d4a880b69 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8274
diff changeset
  4210
    aCollectionOfElements do:[:element |
1f2d4a880b69 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8274
diff changeset
  4211
        count := count + (self occurrencesOf:element)
8274
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4212
    ].
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4213
    ^ count
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4214
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4215
    "
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4216
     #(1 4 6 8 4 1) occurrencesOfAny:#(1 4)  
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4217
     #(1 4 6 8 4 1) occurrencesOfAny:#(2 5)  
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4218
     'hello world' occurrencesOfAny:'hel'     
729d36911f18 +occurrencesOfAny
Claus Gittinger <cg@exept.de>
parents: 8222
diff changeset
  4219
    "
13871
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4220
!
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4221
13872
073df93a253b added: #sameValuesComputedBy:
Claus Gittinger <cg@exept.de>
parents: 13871
diff changeset
  4222
sameValuesComputedBy:aBlock
13871
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4223
    "true if aBlock answers the same value for all elements of the receiver"
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4224
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4225
    |first valueForFirstElement|
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4226
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4227
    first := true.
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4228
    self do:[:each |
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4229
        first ifTrue:[
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4230
            first := false.
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4231
            valueForFirstElement := aBlock value:each.
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4232
        ] ifFalse:[
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4233
            valueForFirstElement = (aBlock value:each) ifFalse:[
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4234
                ^ false.
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4235
            ].
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4236
        ].
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4237
    ].
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4238
    ^ true
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4239
f17ef367895b added: #sameValueFor:
Claus Gittinger <cg@exept.de>
parents: 13870
diff changeset
  4240
    "
13872
073df93a253b added: #sameValuesComputedBy:
Claus Gittinger <cg@exept.de>
parents: 13871
diff changeset
  4241
     #(1 2 3 5 6 7 8 9) sameValuesComputedBy:[:el | el even]
073df93a253b added: #sameValuesComputedBy:
Claus Gittinger <cg@exept.de>
parents: 13871
diff changeset
  4242
     #(1 1 1 1 1 1) sameValuesComputedBy:[:el | el even]
073df93a253b added: #sameValuesComputedBy:
Claus Gittinger <cg@exept.de>
parents: 13871
diff changeset
  4243
     #(1 1 1.0 1.0 1) sameValuesComputedBy:[:el | el even]
073df93a253b added: #sameValuesComputedBy:
Claus Gittinger <cg@exept.de>
parents: 13871
diff changeset
  4244
     #(1 3 3 15 1) sameValuesComputedBy:[:el | el even]
073df93a253b added: #sameValuesComputedBy:
Claus Gittinger <cg@exept.de>
parents: 13871
diff changeset
  4245
    "
073df93a253b added: #sameValuesComputedBy:
Claus Gittinger <cg@exept.de>
parents: 13871
diff changeset
  4246
073df93a253b added: #sameValuesComputedBy:
Claus Gittinger <cg@exept.de>
parents: 13871
diff changeset
  4247
    "Created: / 21-12-2011 / 15:59:19 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4248
! !
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4249
4680
d98e4f6d0c38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4250
!Collection methodsFor:'tracing'!
d98e4f6d0c38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4251
d98e4f6d0c38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4252
traceInto:aRequestor level:level from:referrer
d98e4f6d0c38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4253
    "double dispatch into tracer, passing my type implicitely in the selector"
d98e4f6d0c38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4254
d98e4f6d0c38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4255
    ^ aRequestor traceCollection:self level:level from:referrer
d98e4f6d0c38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4256
d98e4f6d0c38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4257
d98e4f6d0c38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4258
! !
d98e4f6d0c38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4259
8395
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8359
diff changeset
  4260
!Collection methodsFor:'visiting'!
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8359
diff changeset
  4261
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8359
diff changeset
  4262
acceptVisitor:aVisitor with:aParameter
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8359
diff changeset
  4263
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8359
diff changeset
  4264
    ^ aVisitor visitCollection:self with:aParameter
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8359
diff changeset
  4265
! !
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8359
diff changeset
  4266
2097
7db449048537 commentary
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  4267
!Collection class methodsFor:'documentation'!
628
7aa563e4c64a version at the end
Claus Gittinger <cg@exept.de>
parents: 602
diff changeset
  4268
13699
478de3b32a97 added: #,
Claus Gittinger <cg@exept.de>
parents: 13698
diff changeset
  4269
version
14027
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  4270
    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.272 2012-02-28 20:22:53 cg Exp $'
13699
478de3b32a97 added: #,
Claus Gittinger <cg@exept.de>
parents: 13698
diff changeset
  4271
!
478de3b32a97 added: #,
Claus Gittinger <cg@exept.de>
parents: 13698
diff changeset
  4272
12090
4f63adc2f14d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12008
diff changeset
  4273
version_CVS
14027
Claus Gittinger <cg@exept.de>
parents: 14022
diff changeset
  4274
    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.272 2012-02-28 20:22:53 cg Exp $'
628
7aa563e4c64a version at the end
Claus Gittinger <cg@exept.de>
parents: 602
diff changeset
  4275
! !
6867
7e12452e8685 added #collectAll:
Claus Gittinger <cg@exept.de>
parents: 6757
diff changeset
  4276
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4277
Collection initialize!