lib/string_experimentations: Added README for project
authorLucas Bajolet <r4pass@hotmail.com>
Mon, 21 Jul 2014 16:48:27 +0000 (12:48 -0400)
committerLucas Bajolet <r4pass@hotmail.com>
Tue, 29 Jul 2014 16:00:10 +0000 (12:00 -0400)
Signed-off-by: Lucas Bajolet <r4pass@hotmail.com>

lib/string_experimentations/README [new file with mode: 0644]

diff --git a/lib/string_experimentations/README b/lib/string_experimentations/README
new file mode 100644 (file)
index 0000000..fa09366
--- /dev/null
@@ -0,0 +1,17 @@
+This project is a collection of modules used to experiment on different variations of Text and its subclasses.
+This is only temporary as these modules will eventually be merged into standard library or discarded for those bringing no real improvements to the language.
+
+The modules contained here are :
+
+ * utf8: A draft of implementation of UTF-8 as internal encoding for Strings with automatic indexing.
+
+TODO :
+
+ * utf8:
+  * Support for the whole API of Text
+  * Any kind of normalization form for equality (NFC probably)
+  * Compatibility versions of equality test
+  * Locale support
+  * Comparisons
+  * to_upper/lower fully-compatible with Unicode
+  * Lazy indexing version