aboutsummaryrefslogtreecommitdiff
path: root/frontend/utilities.icl
diff options
context:
space:
mode:
authorsjakie1999-11-10 13:54:06 +0000
committersjakie1999-11-10 13:54:06 +0000
commit61d33fd39dc2697fc127d2c7b292e84c32f397ff (patch)
tree9f361fdc6248d50ea588d3ecdb4bc92539435349 /frontend/utilities.icl
parentbug fix: missing alternative in 'instance distributeLets Selection' (diff)
extension: not necessary to repeat definitions of dcl-module in icl-module
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@40 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'frontend/utilities.icl')
-rw-r--r--frontend/utilities.icl1
1 files changed, 1 insertions, 0 deletions
diff --git a/frontend/utilities.icl b/frontend/utilities.icl
index c74b2e0..4c54d13 100644
--- a/frontend/utilities.icl
+++ b/frontend/utilities.icl
@@ -158,6 +158,7 @@ foldSt op r l :== fold_st r l
fold_st [] st = st
fold_st [a:x] st = fold_st x (op a st)
+// iFoldSt :: (Int -> .(.b -> .b)) !Int !Int .b -> .b
iFoldSt op fr to st :== i_fold_st fr to st
where
i_fold_st fr to st