diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-04-17 11:38:51 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-04-17 11:38:51 +0000 |
commit | 872810e1e03dc99f39d1a0aecb2081e3894ec8f4 (patch) | |
tree | caa0af546d49e4c4a137ebaffc2a4e50f64ed9bc /perl_checker.src/common.mli | |
parent | 6e2837dcdd4dff544631e3957ec57e91481a5490 (diff) | |
download | perl-MDK-Common-872810e1e03dc99f39d1a0aecb2081e3894ec8f4.tar perl-MDK-Common-872810e1e03dc99f39d1a0aecb2081e3894ec8f4.tar.gz perl-MDK-Common-872810e1e03dc99f39d1a0aecb2081e3894ec8f4.tar.bz2 perl-MDK-Common-872810e1e03dc99f39d1a0aecb2081e3894ec8f4.tar.xz perl-MDK-Common-872810e1e03dc99f39d1a0aecb2081e3894ec8f4.zip |
basic "number of arguments" checking
Diffstat (limited to 'perl_checker.src/common.mli')
-rw-r--r-- | perl_checker.src/common.mli | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/perl_checker.src/common.mli b/perl_checker.src/common.mli index 33b2736..d766b86 100644 --- a/perl_checker.src/common.mli +++ b/perl_checker.src/common.mli @@ -12,6 +12,10 @@ val fstfst : ('a * 'b) * 'c -> 'a val sndfst : ('a * 'b) * 'c -> 'b val fstsnd : 'a * ('b * 'c) -> 'b val sndsnd : 'a * ('b * 'c) -> 'c +val fst3 : 'a * 'b * 'c -> 'a +val snd3 : 'a * 'b * 'c -> 'b +val ter3 : 'a * 'b * 'c -> 'c +val sndter3 : 'a * 'b * 'c -> 'b * 'c val o : ('a -> 'b) -> ('c -> 'a) -> 'c -> 'b val curry : ('a * 'b -> 'c) -> 'a -> 'b -> 'c val uncurry : ('a -> 'b -> 'c) -> 'a * 'b -> 'c |