aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/list.spad.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-04-03 04:23:42 +0000
committerdos-reis <gdr@axiomatics.org>2008-04-03 04:23:42 +0000
commit001e19b08ba7fb1b9e6f6bdb44a82ba3db3fc532 (patch)
treeda9e2fe5d81ff4cd7709d12e44b8c3e348b8a8e3 /src/algebra/list.spad.pamphlet
parenta7bab9a6c2070d05e2dbd256ce455079c8ced385 (diff)
downloadopen-axiom-001e19b08ba7fb1b9e6f6bdb44a82ba3db3fc532.tar.gz
Replace `^=' with `~='.
Diffstat (limited to 'src/algebra/list.spad.pamphlet')
-rw-r--r--src/algebra/list.spad.pamphlet4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/algebra/list.spad.pamphlet b/src/algebra/list.spad.pamphlet
index 93c7b627..e702f8f1 100644
--- a/src/algebra/list.spad.pamphlet
+++ b/src/algebra/list.spad.pamphlet
@@ -118,7 +118,7 @@ IndexedList(S:Type, mn:Integer): Exports == Implementation where
x = y ==
Qeq(x,y) => true
while not Qnull x and not Qnull y repeat
- Qfirst x ^=$S Qfirst y => return false
+ Qfirst x ~=$S Qfirst y => return false
x := Qrest x
y := Qrest y
Qnull x and Qnull y
@@ -1533,7 +1533,7 @@ AssociationList(Key:SetCategory, Entry:SetCategory):
first(l).entry
prev := l
curr := rest l
- while not empty? curr and first(curr).key ^= k repeat
+ while not empty? curr and first(curr).key ~= k repeat
prev := curr
curr := rest curr
empty? curr => "failed"