summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Doligez <damien.doligez-inria.fr>1997-11-05 19:44:54 +0000
committerDamien Doligez <damien.doligez-inria.fr>1997-11-05 19:44:54 +0000
commitc6350836a5e40ee10fd64fdad888600d72b52adf (patch)
treead3f89576f31594582d9026aaac228615ec781be
parent036e2d4c000516193684e0606c9265023b5c491b (diff)
*.iter prend une fonction (xxx -> unit)
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1752 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r--Changes8
1 files changed, 5 insertions, 3 deletions
diff --git a/Changes b/Changes
index a17779175..ed6998ca5 100644
--- a/Changes
+++ b/Changes
@@ -13,10 +13,12 @@ Objective Caml 1.06:
* Language: two new keywords were added: "assert" and "lazy".
* Standard library:
- - Printexc: added to_string.
- - Filename: is_absolute is superseded by is_implicit and is_relative.
+ - Printexc: added "to_string".
+ - Filename: "is_absolute" is superseded by "is_implicit" and "is_relative".
To adapt old programs, change "is_absolute x" to "not (is_implicit x)"
- (the new is_relative is NOT the opposite of the old is_absolute).
+ (the new "is_relative" is NOT the opposite of the old "is_absolute").
+ - Array, Hashtbl, List, Map, Queue, Set, Stack, Stream:
+ the "iter" functions now take as argument a unit-returning function.
- New library: Lazy (delayed computations).
Objective Caml 1.05: