summaryrefslogtreecommitdiff
path: root/appl/lib
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2007-02-17 17:53:48 +0000
committerCharles.Forsyth <devnull@localhost>2007-02-17 17:53:48 +0000
commit2249108ae3e3c5d02e45007e195672e350517856 (patch)
tree3da5b86485276c26726c55e23da718686986f61a /appl/lib
parent463f3a975e935d078a7c3479e0a56afb06f10fb5 (diff)
fix issue 9, add preliminary lists module
Diffstat (limited to 'appl/lib')
-rw-r--r--appl/lib/libc.b11
-rw-r--r--appl/lib/libc0.b20
-rw-r--r--appl/lib/lists.b131
3 files changed, 154 insertions, 8 deletions
diff --git a/appl/lib/libc.b b/appl/lib/libc.b
index 0acc6f42..8260277e 100644
--- a/appl/lib/libc.b
+++ b/appl/lib/libc.b
@@ -113,9 +113,16 @@ strncmp(s1: string, s2: string, n: int): int
{
l1 := len s1;
l2 := len s2;
- for(i := 0; i < l1 && i < l2 && i < n; i++)
+ m := n;
+ if(m > l1)
+ m = l1;
+ if(m > l2)
+ m = l2;
+ for(i := 0; i < m; i++)
if(s1[i] != s2[i])
- return s1[i]-int s2[i];
+ return s1[i]-s2[i];
+ if(i == n)
+ return 0;
return l1-l2;
}
diff --git a/appl/lib/libc0.b b/appl/lib/libc0.b
index a9a2e834..aa6caff2 100644
--- a/appl/lib/libc0.b
+++ b/appl/lib/libc0.b
@@ -170,12 +170,20 @@ strcmp(s1: array of byte, s2: array of byte): int
strncmp(s1: array of byte, s2: array of byte, n: int): int
{
- l1 := strlen(s1);
- l2 := strlen(s2);
- for(i := 0; i < l1 && i < l2 && i < n; i++)
- if(s1[i] != s2[i])
- return int s1[i]-int s2[i];
- return l1-l2;
+ i1 := i2 := 0;
+ while(n > 0){
+ c1 := int s1[i1++];
+ c2 := int s2[i2++];
+ n--;
+ if(c1 != c2){
+ if(c1 > c2)
+ return 1;
+ return -1;
+ }
+ if(c1 == 0)
+ break;
+ }
+ return 0;
}
strchr(s: array of byte, n: int): array of byte
diff --git a/appl/lib/lists.b b/appl/lib/lists.b
new file mode 100644
index 00000000..e12a2e5d
--- /dev/null
+++ b/appl/lib/lists.b
@@ -0,0 +1,131 @@
+implement Lists;
+
+include "lists.m";
+
+# these will be more useful when p is a closure
+allsat[T](p: ref fn(x: T): int, l: list of T): int
+{
+ for(; l != nil; l = tl l)
+ if(!p(hd l))
+ return 0;
+ return 1;
+}
+
+anysat[T](p: ref fn(x: T): int, l: list of T): int
+{
+ for(; l != nil; l = tl l)
+ if(p(hd l))
+ return 1;
+ return 0;
+}
+
+map[T](f: ref fn(x: T): T, l: list of T): list of T
+{
+ if(l == nil)
+ return nil;
+ return f(hd l) :: map(f, tl l);
+}
+
+filter[T](p: ref fn(x: T): int, l: list of T): list of T
+{
+ if(l == nil)
+ return nil;
+ if(p(hd l))
+ return hd l :: filter(p, tl l);
+ return filter(p, tl l);
+}
+
+partition[T](p: ref fn(x: T): int, l: list of T): (list of T, list of T)
+{
+ l1: list of T;
+ l2: list of T;
+ for(; l != nil; l = tl l)
+ if(p(hd l))
+ l1 = hd l :: l1;
+ else
+ l2 = hd l :: l2;
+ return (reverse(l1), reverse(l2));
+}
+
+append[T](l: list of T, x: T): list of T
+{
+ # could use the reversing loops instead if this is ever a bottleneck
+ if(l == nil)
+ return x :: nil;
+ return hd l :: append(tl l, x);
+}
+
+concat[T](l: list of T, l2: list of T): list of T
+{
+ if(l2 == nil)
+ return l;
+ for(l = reverse(l); l2 != nil; l2 = tl l2)
+ l = hd l2 :: l;
+ return reverse(l);
+}
+
+combine[T](l: list of T, l2: list of T): list of T
+{
+ for(; l != nil; l = tl l)
+ l2 = hd l :: l2;
+ return l2;
+}
+
+reverse[T](l: list of T): list of T
+{
+ rl: list of T;
+ for(; l != nil; l = tl l)
+ rl = hd l :: rl;
+ return rl;
+}
+
+last[T](l: list of T): T
+{
+ # l must not be nil
+ while(tl l != nil)
+ l = tl l;
+ return hd l;
+}
+
+# delete the first instance of x in l
+delete[T](x: T, l: list of T): list of T
+ for { T => eq: fn(a, b: T): int; }
+{
+ o: list of T;
+ for(; l != nil; l = tl l)
+ if(T.eq(x, hd l)){
+ l = tl l;
+ for(; o != nil; o = tl o)
+ l = hd o :: l;
+ break;
+ }
+ return l;
+}
+
+pair[T1, T2](l1: list of T1, l2: list of T2): list of (T1, T2)
+{
+ if(l1 == nil && l2 == nil)
+ return nil;
+ return (hd l1, hd l2) :: pair(tl l1, tl l2);
+}
+
+unpair[T1, T2](l: list of (T1, T2)): (list of T1, list of T2)
+{
+ l1: list of T1;
+ l2: list of T2;
+ for(; l != nil; l = tl l){
+ (v1, v2) := hd l;
+ l1 = v1 :: l1;
+ l2 = v2 :: l2;
+ }
+ return (reverse(l1), reverse(l2));
+}
+
+ismember[T](x: T, l: list of T): int
+ for { T => eq: fn(a, b: T): int; }
+{
+ for(; l != nil; l = tl l)
+ if(T.eq(x, hd l))
+ return 1;
+ return 0;
+}