summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorMaciej Piechotka <uzytkownik2@gmail.com>2012-09-24 22:05:00 +0200
committerMaciej Piechotka <uzytkownik2@gmail.com>2012-09-24 22:05:00 +0200
commit5f2028e4a289edbfe376b836c797a73e0ace3294 (patch)
treeb5c6cbb81c1c3dddac2119fc77ea180e53f4e23c /README
parent3ad8c2fb20c2700ea50ee71bbf1e3faf61870f01 (diff)
downloadlibgee-5f2028e4a289edbfe376b836c797a73e0ace3294.tar.gz
Update README
Diffstat (limited to 'README')
-rw-r--r--README46
1 files changed, 32 insertions, 14 deletions
diff --git a/README b/README
index 9236473..69be7cb 100644
--- a/README
+++ b/README
@@ -1,20 +1,38 @@
-libgee is a collection library providing GObject-based interfaces and
+Libgee is a collection library providing GObject-based interfaces and
classes for commonly used data structures.
-libgee provides the following interfaces:
+Libgee provides the following interfaces:
- * Iterable
- * Collection
- * List
- * Set
- * Iterator
- * Map
+ * Traversable
+ o Iterable
+ + Collection
+ # List
+ * BidirList
+ # Set
+ * SortedSet
+ o BidirSortedSet
+ # MultiSet
+ # Queue
+ * Deque
+ + Map
+ # SortedMap
+ * BidirSortedMap
+ o Iterator
+ + BidirIterator
+ # BidirListIterator
+ + ListIterator
+ # BidirListIterator
+ * MultiMap
-The ArrayList, HashSet, and HashMap classes provide a reasonable sample
-implementation of the List, Set, and Map interfaces. ReadOnlyCollection,
-ReadOnlyList, ReadOnlySet, and ReadOnlyMap are read-only wrapper classes
-that prevent modification of the underlying collection.
+The ArrayList, ArrauQueue, ConcurrentLinkedList HashSet, HashMap, HashMultiSet,
+HashMultiMap, LinkedList, PriorityQueue, TreeSet, TreeMap,
+TreeMultiSet, and TreeMultiMap classes provide a reasonable sample
+implementation of those interfaces. In addition, a set of abstract
+classes are provided to ease the implementation of new collections.
-libgee is written in Vala and can be used like any GObject-based C library.
-It's planned to provide bindings for further languages.
+Around that, the API provide means to retrieve read-only views,
+efficient sort algorithms, simple, bi-directional or index-based mutable
+iterators depending on the collection type.
+Libgee is written in Vala and can be used like any GObject-based C
+library. It's planned to provide bindings for further languages.