Changeset 4286
- Timestamp:
- 05/29/08 02:30:43 (3 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
library/bintree.lgt (modified) (2 diffs)
-
RELEASE_NOTES.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/library/bintree.lgt
r4074 r4286 5 5 6 6 :- info([ 7 version is 1. 2,7 version is 1.3, 8 8 author is 'Paulo Moura', 9 date is 2008/ 2/11,9 date is 2008/5/29, 10 10 comment is 'Dictionary protocol implemented using binary trees.']). 11 11 … … 13 13 :- meta_predicate(map(*, *, *, ::)). 14 14 :- mode(map(+atom, +tree, -tree, -callable), zero_or_one). 15 16 as_dictionary(Pairs, Dictionary) :- 17 empty(Empty), 18 insert_all(Pairs, Empty, Dictionary). 15 19 16 20 as_list(Tree, List) :- -
trunk/RELEASE_NOTES.txt
r4285 r4286 17 17 are no longer necessary for recent YAP versions. 18 18 19 Added missing implementation of the predicate as_dictionary/2 to the 20 "bintree" library object. Thanks to Victor Noel for the bug report. 21 19 22 Updated the syntax coloring support for the Vim text editor to properly 20 23 highlight quoted atoms and strings in the opening directives of parametric … … 32 35 33 36 Fixed a Logtalk compiler bug when compiling a class that imports a 34 category that extends other categories. Thanks to Victor Noel for37 category that extends other categories. Thanks to Victor Noel for 35 38 the bug report. 36 39
