summaryrefslogtreecommitdiffstats
path: root/perl_checker.src/common.mli
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-11-14 20:03:21 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-11-14 20:03:21 +0000
commitd22a970196e532292d20dbaa5dc25ed5c35f6bc1 (patch)
tree88114434c6b9080a268f8bfe2f26e07939c05c7e /perl_checker.src/common.mli
parenta4a7e80c8c89ae1e962a86ae14e2f1865f95d1f7 (diff)
downloadperl-MDK-Common-d22a970196e532292d20dbaa5dc25ed5c35f6bc1.tar
perl-MDK-Common-d22a970196e532292d20dbaa5dc25ed5c35f6bc1.tar.gz
perl-MDK-Common-d22a970196e532292d20dbaa5dc25ed5c35f6bc1.tar.bz2
perl-MDK-Common-d22a970196e532292d20dbaa5dc25ed5c35f6bc1.tar.xz
perl-MDK-Common-d22a970196e532292d20dbaa5dc25ed5c35f6bc1.zip
*** empty log message ***
Diffstat (limited to 'perl_checker.src/common.mli')
-rw-r--r--perl_checker.src/common.mli4
1 files changed, 4 insertions, 0 deletions
diff --git a/perl_checker.src/common.mli b/perl_checker.src/common.mli
index ccf6587..ec9c8ce 100644
--- a/perl_checker.src/common.mli
+++ b/perl_checker.src/common.mli
@@ -8,6 +8,10 @@ val id : 'a -> 'a
val double : 'a -> 'a * 'a
val swap : 'a * 'b -> 'b * 'a
val safe_tl : 'a list -> 'a list
+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 o : ('a -> 'b) -> ('c -> 'a) -> 'c -> 'b
val curry : ('a * 'b -> 'c) -> 'a -> 'b -> 'c
val uncurry : ('a -> 'b -> 'c) -> 'a * 'b -> 'c