removed legacy |>>>
authorhaftmann
Thu, 09 Oct 2008 08:47:28 +0200
changeset 28538 3147236326ea
parent 28537 1e84256d1a8a
child 28539 bdb308737bfd
removed legacy |>>>
src/Pure/library.ML
--- a/src/Pure/library.ML	Thu Oct 09 08:47:27 2008 +0200
+++ b/src/Pure/library.ML	Thu Oct 09 08:47:28 2008 +0200
@@ -9,7 +9,6 @@
 See also General/basics.ML for the most fundamental concepts.
 *)
 
-infix 1 |>>>
 infix 2 ?
 infix 3 o oo ooo oooo
 infix 4 ~~ upto downto
@@ -24,7 +23,6 @@
   val K: 'a -> 'b -> 'a
   val curry: ('a * 'b -> 'c) -> 'a -> 'b -> 'c
   val uncurry: ('a -> 'b -> 'c) -> 'a * 'b -> 'c
-  val |>>> : ('a * 'c) * ('a -> 'b * 'd) -> 'b * ('c * 'd)
   val ? : bool * ('a -> 'a) -> 'a -> 'a
   val oo: ('a -> 'b) * ('c -> 'd -> 'a) -> 'c -> 'd -> 'b
   val ooo: ('a -> 'b) * ('c -> 'd -> 'e -> 'a) -> 'c -> 'd -> 'e -> 'b
@@ -257,9 +255,6 @@
 fun curry f x y = f (x, y);
 fun uncurry f (x, y) = f x y;
 
-(*application and structured results -- old version*)
-fun (x, y) |>>> f = let val (x', z) = f x in (x', (y, z)) end;
-
 (*conditional application*)
 fun b ? f = fn x => if b then f x else x;