summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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: