aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/aggcat.spad.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2013-05-19 18:36:07 +0000
committerdos-reis <gdr@axiomatics.org>2013-05-19 18:36:07 +0000
commitd9777ce9dcd2bcde348bba152d4667559b025d9d (patch)
treee97588cce6d9c9866b8027cffe41dc578efe102b /src/algebra/aggcat.spad.pamphlet
parentcc69cdefa3acf48bad75ac52f55cd9f27c970eab (diff)
downloadopen-axiom-d9777ce9dcd2bcde348bba152d4667559b025d9d.tar.gz
Eradicate attribute finiteAggregate.
* algebra/aggcat.spad.pamphlet (HomogeneousAggregate): Remove exports conditional aatribute finiteAggregate. (TableAggregate): Remove spirous definitions. * algebra/stream.spad.pamphlet (LazyStreamAggregate): Put definitions for FiniteAgregate exports under appropriate condition.
Diffstat (limited to 'src/algebra/aggcat.spad.pamphlet')
-rw-r--r--src/algebra/aggcat.spad.pamphlet35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/algebra/aggcat.spad.pamphlet b/src/algebra/aggcat.spad.pamphlet
index 79973f91..af8b3dcb 100644
--- a/src/algebra/aggcat.spad.pamphlet
+++ b/src/algebra/aggcat.spad.pamphlet
@@ -95,30 +95,6 @@ HomogeneousAggregate(S:Type): Category == Aggregate with
if % has shallowlyMutable then
map!: (S->S,%) -> %
++ map!(f,u) destructively replaces each element x of u by \axiom{f(x)}.
- if % has finiteAggregate then
- any?: (S->Boolean,%) -> Boolean
- ++ any?(p,u) tests if \axiom{p(x)} is true for any element x of u.
- ++ Note: for collections,
- ++ \axiom{any?(p,u) = reduce(or,map(f,u),false,true)}.
- every?: (S->Boolean,%) -> Boolean
- ++ every?(f,u) tests if p(x) is true for all elements x of u.
- ++ Note: for collections,
- ++ \axiom{every?(p,u) = reduce(and,map(f,u),true,false)}.
- count: (S->Boolean,%) -> NonNegativeInteger
- ++ count(p,u) returns the number of elements x in u
- ++ such that \axiom{p(x)} is true. For collections,
- ++ \axiom{count(p,u) = reduce(+,[1 for x in u | p(x)],0)}.
- members: % -> List S
- ++ members(u) returns a list of the consecutive elements of u.
- ++ For collections, \axiom{members([x,y,...,z]) = (x,y,...,z)}.
- if S has BasicType then
- count: (S,%) -> NonNegativeInteger
- ++ count(x,u) returns the number of occurrences of x in u.
- ++ For collections, \axiom{count(x,u) = reduce(+,[x=y for y in u],0)}.
- member?: (S,%) -> Boolean
- ++ member?(x,u) tests if x is a member of u.
- ++ For collections,
- ++ \axiom{member?(x,u) = reduce(or,[x=y for y in u],false)}.
add
if S has Evalable S then
eval(u:%,l:List Equation S):% == map(eval(#1,l),u)
@@ -1195,17 +1171,6 @@ TableAggregate(Key:SetCategory, Entry:SetCategory): Category ==
remove!(k.key, t)
k
- any?(f: Entry->Boolean, t: %): Boolean ==
- for k in keys t | f t k repeat return true
- false
- every?(f: Entry->Boolean, t: %): Boolean ==
- for k in keys t | not f t k repeat return false
- true
- count(f: Entry->Boolean, t: %): NonNegativeInteger ==
- tally: NonNegativeInteger := 0
- for k in keys t | f t k repeat tally := tally + 1
- tally
-
@
\section{category RCAGG RecursiveAggregate}