aboutsummaryrefslogtreecommitdiff
path: root/pages/projects/codepoint_iterator.md
diff options
context:
space:
mode:
Diffstat (limited to 'pages/projects/codepoint_iterator.md')
-rw-r--r--pages/projects/codepoint_iterator.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/pages/projects/codepoint_iterator.md b/pages/projects/codepoint_iterator.md
index e2f43de..f5b08ca 100644
--- a/pages/projects/codepoint_iterator.md
+++ b/pages/projects/codepoint_iterator.md
@@ -1,3 +1,15 @@
# CodepointIterator
…is a `std::iterator` derived class implementing the `std::bidirectional_iterator_tag` which iterates through unicode codepoints in a UTF8-encoded string.
+
+The source code is available on both my [Github] profile and [cgit].
+
+### Current features
+
+* Bidirectional iteration through unicode codepoints
+* The class itself does not rely on any external libraries
+* Dereferencing an instance of the iterator yields the codepoint as `char32_t`
+* Unit Tests based on GoogleTest
+
+[Github]: https://github.com/KnairdA/CodepointIterator
+[cgit]: http://code.kummerlaender.eu/CodepointIterator/