Magnitude.st
author Stefan Vogel <sv@exept.de>
Tue, 28 Apr 2020 16:22:44 +0200
changeset 25376 88a3329875ba
parent 24468 3bf34e79ef6e
permissions -rw-r--r--
#REFACTORING by stefan class: MethodDictionary class removed: #newWithCapacity: moved to superclass
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24396
3dfb65acb1f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21838
diff changeset
     1
"{ Encoding: utf8 }"
3dfb65acb1f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21838
diff changeset
     2
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     3
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     4
 COPYRIGHT (c) 1988 by Claus Gittinger
213
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
     5
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    13
"
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    14
"{ Package: 'stx:libbasic' }"
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    15
18396
b42870402e9b class: Magnitude
Claus Gittinger <cg@exept.de>
parents: 16275
diff changeset
    16
"{ NameSpace: Smalltalk }"
b42870402e9b class: Magnitude
Claus Gittinger <cg@exept.de>
parents: 16275
diff changeset
    17
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    18
Object subclass:#Magnitude
1226
0beea7b0ab4f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
    19
	instanceVariableNames:''
0beea7b0ab4f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
    20
	classVariableNames:''
0beea7b0ab4f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
    21
	poolDictionaries:''
0beea7b0ab4f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
    22
	category:'Magnitude-General'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    23
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    24
88
81dacba7a63a *** empty log message ***
claus
parents: 56
diff changeset
    25
!Magnitude class methodsFor:'documentation'!
81dacba7a63a *** empty log message ***
claus
parents: 56
diff changeset
    26
81dacba7a63a *** empty log message ***
claus
parents: 56
diff changeset
    27
copyright
81dacba7a63a *** empty log message ***
claus
parents: 56
diff changeset
    28
"
81dacba7a63a *** empty log message ***
claus
parents: 56
diff changeset
    29
 COPYRIGHT (c) 1988 by Claus Gittinger
213
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
    30
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    31
88
81dacba7a63a *** empty log message ***
claus
parents: 56
diff changeset
    32
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 56
diff changeset
    33
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 56
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 56
diff changeset
    35
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 56
diff changeset
    36
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 56
diff changeset
    37
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 56
diff changeset
    38
"
81dacba7a63a *** empty log message ***
claus
parents: 56
diff changeset
    39
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    40
88
81dacba7a63a *** empty log message ***
claus
parents: 56
diff changeset
    41
documentation
81dacba7a63a *** empty log message ***
claus
parents: 56
diff changeset
    42
"
21838
0682509bb3fb #DOCUMENTATION by mawalch
mawalch
parents: 21806
diff changeset
    43
    This is an abstract class defining common methods for
21154
e66c72f9ff95 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19456
diff changeset
    44
    Objects which can be compared by a kind of less-than relation.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
    45
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
    46
    [author:]
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
    47
        Claus Gittinger
88
81dacba7a63a *** empty log message ***
claus
parents: 56
diff changeset
    48
"
81dacba7a63a *** empty log message ***
claus
parents: 56
diff changeset
    49
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    50
8892
5d05a7f150a5 +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8204
diff changeset
    51
!Magnitude class methodsFor:'queries'!
5d05a7f150a5 +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8204
diff changeset
    52
5d05a7f150a5 +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8204
diff changeset
    53
isAbstract
11226
846103646b4a comment
Claus Gittinger <cg@exept.de>
parents: 10600
diff changeset
    54
    "Return if this class is an abstract class.
846103646b4a comment
Claus Gittinger <cg@exept.de>
parents: 10600
diff changeset
    55
     True is returned for Magnitude here; false for subclasses.
19456
4ff6b20a99a5 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19006
diff changeset
    56
     Abstract subclasses must redefine this again."
11226
846103646b4a comment
Claus Gittinger <cg@exept.de>
parents: 10600
diff changeset
    57
8892
5d05a7f150a5 +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8204
diff changeset
    58
    ^ self == Magnitude
5d05a7f150a5 +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8204
diff changeset
    59
! !
5d05a7f150a5 +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8204
diff changeset
    60
10600
6bfbf469a1be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8892
diff changeset
    61
!Magnitude methodsFor:'Compatibility-Squeak'!
6bfbf469a1be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8892
diff changeset
    62
6bfbf469a1be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8892
diff changeset
    63
min:aMin max:aMax 
6bfbf469a1be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8892
diff changeset
    64
    "similar to clampBetween:and:"
6bfbf469a1be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8892
diff changeset
    65
6bfbf469a1be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8892
diff changeset
    66
    ^ (self min: aMin) max: aMax
6bfbf469a1be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8892
diff changeset
    67
6bfbf469a1be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8892
diff changeset
    68
    "Created: / 06-06-2007 / 11:00:22 / cg"
24468
3bf34e79ef6e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24396
diff changeset
    69
!
3bf34e79ef6e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24396
diff changeset
    70
3bf34e79ef6e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24396
diff changeset
    71
threeWayCompareWith:arg
3bf34e79ef6e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24396
diff changeset
    72
    "alias for compareWith:"
3bf34e79ef6e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24396
diff changeset
    73
3bf34e79ef6e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24396
diff changeset
    74
    ^ self compareWith:arg
3bf34e79ef6e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24396
diff changeset
    75
3bf34e79ef6e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24396
diff changeset
    76
    "Created: / 24-07-2019 / 10:10:08 / Claus Gittinger"
10600
6bfbf469a1be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8892
diff changeset
    77
! !
6bfbf469a1be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8892
diff changeset
    78
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    79
!Magnitude methodsFor:'comparing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    80
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    81
< aMagnitude
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    82
    "Compare the receiver with the argument and return true if the
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    83
     receiver is less than the argument. Otherwise return false."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    84
8181
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
    85
    ^ self subclassResponsibility
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    86
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    87
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    88
<= aMagnitude
8181
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
    89
    "return true, if the argument is greater or equal than the receiver"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    90
8181
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
    91
    ^ (aMagnitude < self) not
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    92
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    93
a27a279701f8 Initial revision
claus
parents:
diff changeset
    94
= aMagnitude
a27a279701f8 Initial revision
claus
parents:
diff changeset
    95
    "Compare the receiver with the argument and return true if the
a27a279701f8 Initial revision
claus
parents:
diff changeset
    96
     receiver is equal to the argument. Otherwise return false."
a27a279701f8 Initial revision
claus
parents:
diff changeset
    97
a27a279701f8 Initial revision
claus
parents:
diff changeset
    98
    ^ self subclassResponsibility
a27a279701f8 Initial revision
claus
parents:
diff changeset
    99
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   100
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   101
> aMagnitude
8181
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   102
    "return true, if the argument is less than the receiver"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   103
8181
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   104
    ^ aMagnitude < self
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   105
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   106
a27a279701f8 Initial revision
claus
parents:
diff changeset
   107
>= aMagnitude
8181
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   108
    "return true, if the argument is less or equal than the receiver"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   109
8181
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   110
    ^ (self < aMagnitude) not
213
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   111
!
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   112
1226
0beea7b0ab4f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   113
clampBetween:min and:max
21838
0682509bb3fb #DOCUMENTATION by mawalch
mawalch
parents: 21806
diff changeset
   114
    "return the receiver if it is between min .. max,
0682509bb3fb #DOCUMENTATION by mawalch
mawalch
parents: 21806
diff changeset
   115
     or min if it is less than min, or max if it is greater than max.
1226
0beea7b0ab4f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   116
     This is only a lazy-typers helper for: ((something min:max) max:min)"
0beea7b0ab4f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   117
8181
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   118
    (max < self) ifTrue:[^ max].
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   119
    (self < min) ifTrue:[^ min].
1226
0beea7b0ab4f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   120
    ^ self
0beea7b0ab4f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   121
0beea7b0ab4f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   122
    "
0beea7b0ab4f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   123
     1 clampBetween:2 and:5  
0beea7b0ab4f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   124
     3 clampBetween:2 and:5  
0beea7b0ab4f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   125
     6 clampBetween:2 and:5  
0beea7b0ab4f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   126
    "
0beea7b0ab4f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   127
21445
80e85d304ac4 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21154
diff changeset
   128
    "Modified: / 19-04-1996 / 14:58:12 / cg"
80e85d304ac4 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21154
diff changeset
   129
    "Modified (comment): / 13-02-2017 / 20:26:41 / cg"
21838
0682509bb3fb #DOCUMENTATION by mawalch
mawalch
parents: 21806
diff changeset
   130
    "Modified (comment): / 19-06-2017 / 14:59:47 / mawalch"
1226
0beea7b0ab4f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   131
!
0beea7b0ab4f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   132
8181
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   133
compare:arg ifLess:lessBlock ifEqual:equalBlock ifGreater:greaterBlock
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   134
    "three-way compare - thanks to Self for this idea.
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   135
     Can be redefined in subclasses to do it with a single comparison if
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   136
     comparison is expensive."
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   137
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   138
    self < arg ifTrue:[
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   139
	^ lessBlock value
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   140
    ].
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   141
    self = arg ifTrue:[
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   142
	^ equalBlock value
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   143
    ].
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   144
    ^ greaterBlock value
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   145
!
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   146
19006
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   147
compareWith:arg
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   148
    "Compare the receiver with the argument and return 1 if the receiver is
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   149
     greater, 0 if equal and -1 if less than the argument."
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   150
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   151
    self < arg ifTrue:[
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   152
        ^ -1
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   153
    ].
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   154
    self = arg ifTrue:[
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   155
        ^ 0
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   156
    ].
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   157
    ^ 1
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   158
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   159
    "
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   160
     100 compareWith: 101
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   161
    "
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   162
!
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   163
16275
062c57a36882 class: Magnitude
Stefan Vogel <sv@exept.de>
parents: 15374
diff changeset
   164
hash
062c57a36882 class: Magnitude
Stefan Vogel <sv@exept.de>
parents: 15374
diff changeset
   165
    "instances, for which #= answers true must answer the same hash"
062c57a36882 class: Magnitude
Stefan Vogel <sv@exept.de>
parents: 15374
diff changeset
   166
062c57a36882 class: Magnitude
Stefan Vogel <sv@exept.de>
parents: 15374
diff changeset
   167
    ^ self subclassResponsibility
062c57a36882 class: Magnitude
Stefan Vogel <sv@exept.de>
parents: 15374
diff changeset
   168
!
062c57a36882 class: Magnitude
Stefan Vogel <sv@exept.de>
parents: 15374
diff changeset
   169
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   170
max:aMagnitude
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   171
    "return the receiver or the argument, whichever has greater magnitude"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   172
8181
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   173
    (aMagnitude < self) ifTrue:[^ self].
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   174
    ^ aMagnitude
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   175
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   176
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   177
     1 max: 2
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   178
     1 max: 2.0
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   179
     2.0 max: 1.0
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   180
     2.0 max: 2
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   181
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   182
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   183
213
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   184
min:aMagnitude
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   185
    "return the receiver or the argument, whichever has lesser magnitude"
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   186
8181
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   187
    (self < aMagnitude) ifTrue:[^ self].
213
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   188
    ^ aMagnitude
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   189
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   190
    "
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   191
     1 min: 2
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   192
     1 min: 2.0
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   193
     2.0 min: 1.0
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   194
     2.0 min: 2
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   195
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   196
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   197
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   198
!Magnitude methodsFor:'iteration'!
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   199
11602
b7c26da0a6c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11226
diff changeset
   200
downTo:stop by:step do:aBlock
b7c26da0a6c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11226
diff changeset
   201
    "For each element of the interval from the receiver down to the argument stop,
b7c26da0a6c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11226
diff changeset
   202
     decrementing by step, evaluate aBlock, passing the number as argument."
b7c26da0a6c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11226
diff changeset
   203
b7c26da0a6c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11226
diff changeset
   204
    ^ self to:stop by:step negated do:aBlock
b7c26da0a6c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11226
diff changeset
   205
b7c26da0a6c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11226
diff changeset
   206
    "
b7c26da0a6c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11226
diff changeset
   207
     10 downTo:1 by:2 do:[:i | Transcript showCR:i].
b7c26da0a6c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11226
diff changeset
   208
    "
b7c26da0a6c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11226
diff changeset
   209
!
b7c26da0a6c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11226
diff changeset
   210
6073
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   211
downTo:stop do:aBlock
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   212
    "For each element of the interval from the receiver down to the argument stop,
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   213
     evaluate aBlock, passing the number as argument."
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   214
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   215
    ^ self to:stop by:-1 do:aBlock
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   216
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   217
    "
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   218
     10 downTo:1 do:[:i | Transcript showCR:i].
8204
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   219
     $d downTo:$a do:[:i | Transcript showCR:i].
6073
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   220
    "
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   221
!
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   222
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   223
to:stop by:incr do:aBlock
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   224
    "For each element of the interval from the receiver up to the argument stop, incrementing
8204
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   225
     by step, evaluate aBlock passing the element as argument.
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   226
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   227
     Not all Magnitudes do implement #negative and #+ however, 
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   228
     so should this method go to ArithmethicValue?
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   229
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   230
     Only use #<, to speed up things (for subclasses only defining #<)"
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   231
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   232
    |tmp|
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   233
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   234
    tmp := self.
8204
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   235
"using #negative would be more portable, but stc does only inline #< but not #negative (yet)"
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   236
"/    incr negative ifTrue:[
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   237
    incr < 0 ifTrue:[
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   238
        [tmp < stop] whileFalse:[
6073
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   239
            aBlock value:tmp.
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   240
            tmp := tmp+incr
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   241
        ]
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   242
    ] ifFalse:[
8204
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   243
        [stop < tmp] whileFalse:[
6073
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   244
            aBlock value:tmp.
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   245
            tmp := tmp+incr
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   246
        ]
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   247
    ]
6073
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   248
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   249
    "
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   250
     1 to:10 do:[:i | Transcript showCR:i].
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   251
     1 to:10 by:2 do:[:i | Transcript showCR:i].
8204
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   252
     $a to:$z by:2 do:[:i | Transcript showCR:i].
6073
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   253
     10 to:1 by:-1 do:[:i | Transcript showCR:i].
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   254
    "
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   255
!
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   256
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   257
to:stop by:incr doWithBreak:aBlock
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   258
    "For each element of the interval from the receiver up to the argument stop, incrementing
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   259
     by step, evaluate aBlock passing the element as argument.
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   260
     Pass a break argument, to allow for premature exit of the loop."
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   261
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   262
    |tmp break|
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   263
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   264
    break := [^ self].
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   265
    tmp := self.
24396
3dfb65acb1f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21838
diff changeset
   266
    "using #negative would be more portable, but stc does only inline #< but not #negative (yet)"
8204
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   267
    incr < 0 ifTrue:[
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   268
        [tmp < stop] whileFalse:[
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   269
            aBlock value:tmp value:break.
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   270
            tmp := tmp+incr
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   271
        ]
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   272
    ] ifFalse:[
8204
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   273
        [stop < tmp] whileFalse:[
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   274
            aBlock value:tmp value:break.
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   275
            tmp := tmp+incr
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   276
        ]
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   277
    ]
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   278
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   279
    "
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   280
     1 to:100 by:5 doWithBreak:[:index :break |
8204
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   281
        Transcript showCR:index printString.
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   282
        index > 50 ifTrue:[
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   283
            break value
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   284
        ].
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   285
     ]
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   286
    "
24396
3dfb65acb1f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21838
diff changeset
   287
3dfb65acb1f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21838
diff changeset
   288
    "Modified (comment): / 28-06-2019 / 12:44:35 / Claus Gittinger"
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   289
!
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   290
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   291
to:stop by:incr doWithExit:aBlock
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   292
    "For each element of the interval from the receiver up to the argument stop, incrementing
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   293
     by step, evaluate aBlock passing the element as argument.
24396
3dfb65acb1f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21838
diff changeset
   294
     Pass a break argument, to allow for premature exit of the loop.
3dfb65acb1f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21838
diff changeset
   295
     Returns nil or the value passed to the exit>>value: message.
3dfb65acb1f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21838
diff changeset
   296
3dfb65acb1f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21838
diff changeset
   297
     Notice, that this is different to a return statement in the block, 
3dfb65acb1f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21838
diff changeset
   298
     which returns from the enclosed method, NOT only from the block."
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   299
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   300
    |tmp exit|
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   301
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   302
    exit := [:exitValue | ^ exitValue].
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   303
    tmp := self.
24396
3dfb65acb1f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21838
diff changeset
   304
    "/    incr negative ifTrue:[
8204
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   305
    incr < 0 ifTrue:[
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   306
        [tmp < stop] whileFalse:[
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   307
            aBlock value:tmp value:exit.
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   308
            tmp := tmp+incr
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   309
        ]
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   310
    ] ifFalse:[
8204
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   311
        [stop < tmp] whileFalse:[
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   312
            aBlock value:tmp value:exit.
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   313
            tmp := tmp+incr
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   314
        ]
24396
3dfb65acb1f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21838
diff changeset
   315
    ].
3dfb65acb1f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21838
diff changeset
   316
    ^ nil
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   317
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   318
    "
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   319
     1 to:100 by:5 doWithExit:[:index :exit |
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   320
        Transcript showCR:index printString.
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   321
        index > 50 ifTrue:[
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   322
            exit value:nil
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   323
        ].
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   324
     ]
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   325
    "
24396
3dfb65acb1f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21838
diff changeset
   326
3dfb65acb1f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21838
diff changeset
   327
    "Modified: / 28-06-2019 / 12:46:35 / Claus Gittinger"
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   328
!
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   329
11837
27fb4984e97b +to:count:
Claus Gittinger <cg@exept.de>
parents: 11602
diff changeset
   330
to:stop count:aBlock
27fb4984e97b +to:count:
Claus Gittinger <cg@exept.de>
parents: 11602
diff changeset
   331
    "same as (self to:stop) count:aBlock"
27fb4984e97b +to:count:
Claus Gittinger <cg@exept.de>
parents: 11602
diff changeset
   332
27fb4984e97b +to:count:
Claus Gittinger <cg@exept.de>
parents: 11602
diff changeset
   333
    |cnt|
27fb4984e97b +to:count:
Claus Gittinger <cg@exept.de>
parents: 11602
diff changeset
   334
27fb4984e97b +to:count:
Claus Gittinger <cg@exept.de>
parents: 11602
diff changeset
   335
    cnt := 0.
27fb4984e97b +to:count:
Claus Gittinger <cg@exept.de>
parents: 11602
diff changeset
   336
    self to:stop do:[:i |
27fb4984e97b +to:count:
Claus Gittinger <cg@exept.de>
parents: 11602
diff changeset
   337
       (aBlock value:i) ifTrue:[ cnt := cnt + 1 ].
27fb4984e97b +to:count:
Claus Gittinger <cg@exept.de>
parents: 11602
diff changeset
   338
    ].
27fb4984e97b +to:count:
Claus Gittinger <cg@exept.de>
parents: 11602
diff changeset
   339
    ^ cnt
27fb4984e97b +to:count:
Claus Gittinger <cg@exept.de>
parents: 11602
diff changeset
   340
27fb4984e97b +to:count:
Claus Gittinger <cg@exept.de>
parents: 11602
diff changeset
   341
    "
27fb4984e97b +to:count:
Claus Gittinger <cg@exept.de>
parents: 11602
diff changeset
   342
     1 to:10 count:[:n | n even]
27fb4984e97b +to:count:
Claus Gittinger <cg@exept.de>
parents: 11602
diff changeset
   343
    "
27fb4984e97b +to:count:
Claus Gittinger <cg@exept.de>
parents: 11602
diff changeset
   344
!
27fb4984e97b +to:count:
Claus Gittinger <cg@exept.de>
parents: 11602
diff changeset
   345
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   346
to:stop do:aBlock
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   347
    "For each element of the interval from the receiver up to the argument stop,
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   348
     evaluate aBlock, passing the number as argument."
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   349
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   350
    |tmp|
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   351
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   352
    tmp := self.
8204
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   353
    [stop < tmp] whileFalse:[
6073
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   354
        aBlock value:tmp.
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   355
        tmp := tmp+1
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   356
    ]
6073
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   357
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   358
    "
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   359
     1 to:10 do:[:i | Transcript showCR:i].
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   360
     1 to:10 by:2 do:[:i | Transcript showCR:i].
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   361
     10 to:1 by:-1 do:[:i | Transcript showCR:i].
a2b1c61dae18 added #downTo:do:
Claus Gittinger <cg@exept.de>
parents: 5565
diff changeset
   362
    "
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   363
!
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   364
21806
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   365
to:stop do:aBlock separatedBy:actionBetween
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   366
    "For each element of the interval from the receiver up to the argument stop,
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   367
     evaluate aBlock, passing the number as argument.
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   368
     Between each, evaluate actionBetween (but not before the first and not after the last)"
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   369
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   370
    |tmp first|
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   371
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   372
    tmp := self.
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   373
    first := true.
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   374
    [stop < tmp] whileFalse:[
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   375
        first ifFalse:[
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   376
            actionBetween value.
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   377
        ].
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   378
        first := false.
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   379
        aBlock value:tmp.
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   380
        tmp := tmp+1.
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   381
    ]
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   382
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   383
    "
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   384
     1 to:10 
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   385
        do:[:i | Transcript show:i] 
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   386
        separatedBy:[ Transcript show:', '].
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   387
    "
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   388
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   389
    "Created: / 14-06-2017 / 15:23:21 / cg"
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   390
!
86a2e0bfd55d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21445
diff changeset
   391
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   392
to:stop doWithBreak:aBlock
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   393
    "For each element of the interval from the receiver up to the argument stop,
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   394
     evaluate aBlock, passing the number as argument.
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   395
     Pass a break argument, to allow for premature exit of the loop."
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   396
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   397
    |tmp break|
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   398
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   399
    break := [^ self].
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   400
    tmp := self.
8204
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   401
    [stop < tmp] whileFalse:[
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   402
        aBlock value:tmp value:break.
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   403
        tmp := tmp+1
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   404
    ]
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   405
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   406
    "
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   407
     1 to:10 doWithBreak:[:index :break |
8204
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   408
        Transcript showCR:index printString.
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   409
        index > 5 ifTrue:[
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   410
            break value
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   411
        ].
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   412
     ]
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   413
    "
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   414
!
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   415
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   416
to:stop doWithExit:aBlock
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   417
    "For each element of the interval from the receiver up to the argument stop,
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   418
     evaluate aBlock, passing the number as argument.
15374
13a5c9dae49b class: Magnitude
Claus Gittinger <cg@exept.de>
parents: 11837
diff changeset
   419
     Passes an additional exit object, which can be used to leave
13a5c9dae49b class: Magnitude
Claus Gittinger <cg@exept.de>
parents: 11837
diff changeset
   420
     the loop early, by sending it a #value: message.
13a5c9dae49b class: Magnitude
Claus Gittinger <cg@exept.de>
parents: 11837
diff changeset
   421
     Returns nil or the value passed to the exit>>value: message.
13a5c9dae49b class: Magnitude
Claus Gittinger <cg@exept.de>
parents: 11837
diff changeset
   422
13a5c9dae49b class: Magnitude
Claus Gittinger <cg@exept.de>
parents: 11837
diff changeset
   423
     Notice, that this is different to a return statement in the block, 
13a5c9dae49b class: Magnitude
Claus Gittinger <cg@exept.de>
parents: 11837
diff changeset
   424
     which returns from the enclosed method, NOT only from the block."
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   425
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   426
    |exit tmp|
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   427
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   428
    exit := [:exitValue | ^exitValue].
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   429
    tmp := self.
8204
ac5db5b88079 Only use the base compare mechanism, #< for iterating
Stefan Vogel <sv@exept.de>
parents: 8181
diff changeset
   430
    [stop < tmp] whileFalse:[
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   431
        aBlock value:tmp value:exit.
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   432
        tmp := tmp+1
15374
13a5c9dae49b class: Magnitude
Claus Gittinger <cg@exept.de>
parents: 11837
diff changeset
   433
    ].
13a5c9dae49b class: Magnitude
Claus Gittinger <cg@exept.de>
parents: 11837
diff changeset
   434
    ^ nil
5565
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   435
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   436
    "
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   437
     1 to:10 doWithExit:[:index :exit |
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   438
        index == 5 ifTrue:[
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   439
            exit value:nil
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   440
        ].
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   441
        Transcript showCR:index.
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   442
     ].
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   443
    "
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   444
! !
a815d6b86ace moved iterators up in hierarchy
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   445
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   446
!Magnitude methodsFor:'testing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   447
a27a279701f8 Initial revision
claus
parents:
diff changeset
   448
between:min and:max
21838
0682509bb3fb #DOCUMENTATION by mawalch
mawalch
parents: 21806
diff changeset
   449
    "return true if the receiver is greater than or equal to the argument min
18396
b42870402e9b class: Magnitude
Claus Gittinger <cg@exept.de>
parents: 16275
diff changeset
   450
     and less than or equal to the argument max"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   451
a27a279701f8 Initial revision
claus
parents:
diff changeset
   452
    (self < min) ifTrue:[^ false].
8181
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   453
    (max < self) ifTrue:[^ false].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   454
    ^ true
56
be0ed17e6f85 *** empty log message ***
claus
parents: 5
diff changeset
   455
213
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   456
    "
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   457
     1.2 between:1 and:2
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   458
     (3/2) between:1 and:2
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   459
     (3/2) between:0 and:1
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   460
    "
21838
0682509bb3fb #DOCUMENTATION by mawalch
mawalch
parents: 21806
diff changeset
   461
0682509bb3fb #DOCUMENTATION by mawalch
mawalch
parents: 21806
diff changeset
   462
    "Modified (comment): / 19-06-2017 / 14:59:05 / mawalch"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   463
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   464
a27a279701f8 Initial revision
claus
parents:
diff changeset
   465
in:anInterval
a27a279701f8 Initial revision
claus
parents:
diff changeset
   466
    "return whether the receiver is within the interval bounds"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   467
a27a279701f8 Initial revision
claus
parents:
diff changeset
   468
    (self < anInterval start) ifTrue:[^ false].
8181
b2560b88a5b1 Only use #< for comparisons, since this is the base mechanism.
Stefan Vogel <sv@exept.de>
parents: 8178
diff changeset
   469
    (anInterval stop < self)  ifTrue:[^ false].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   470
    ^ true
56
be0ed17e6f85 *** empty log message ***
claus
parents: 5
diff changeset
   471
213
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   472
    "
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   473
     1.2 in:(1 to: 2)
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   474
     (3/2) in:(1 to: 2)
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   475
     (3/2) in:(0 to: 1)
3b56a17534fd *** empty log message ***
claus
parents: 93
diff changeset
   476
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   477
! !
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   478
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   479
!Magnitude class methodsFor:'documentation'!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   480
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   481
version
19005
49909c52b8ed #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18396
diff changeset
   482
    ^ '$Header$'
19006
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   483
!
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   484
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   485
version_CVS
e532e4c38b53 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19005
diff changeset
   486
    ^ '$Header$'
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   487
! !
15374
13a5c9dae49b class: Magnitude
Claus Gittinger <cg@exept.de>
parents: 11837
diff changeset
   488