aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/aggcat.spad.pamphlet
diff options
context:
space:
mode:
Diffstat (limited to 'src/algebra/aggcat.spad.pamphlet')
-rw-r--r--src/algebra/aggcat.spad.pamphlet4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/algebra/aggcat.spad.pamphlet b/src/algebra/aggcat.spad.pamphlet
index 83667f77..576a5a24 100644
--- a/src/algebra/aggcat.spad.pamphlet
+++ b/src/algebra/aggcat.spad.pamphlet
@@ -2599,9 +2599,9 @@ import ListAggregate
++ searching for a key is a linear operation.
AssociationListAggregate(Key:SetCategory,Entry:SetCategory): Category ==
Join(TableAggregate(Key, Entry), ListAggregate Record(key:Key,entry:Entry)) with
- assoc: (Key, %) -> Union(Record(key:Key,entry:Entry), "failed")
+ assoc: (Key, %) -> Maybe Record(key:Key,entry:Entry)
++ assoc(k,u) returns the element x in association list u stored
- ++ with key k, or "failed" if u has no key k.
+ ++ with key k, or \spad{nothing} if u has no key k.
@