aboutsummaryrefslogtreecommitdiff
path: root/source/00_content/pages/projects/codepoint_iterator.md
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-09-11 13:06:53 +0200
committerAdrian Kummerlaender2014-09-11 13:06:53 +0200
commitded69be933abdb3ff69e3bf1991586a70fd13d63 (patch)
tree228e630c312eaab4fb80d312e2a52d0b588eabe7 /source/00_content/pages/projects/codepoint_iterator.md
parent1b4253c36a59ddb9a1530c2ce9898ff18f5a3d31 (diff)
downloadblog.kummerlaender.eu-ded69be933abdb3ff69e3bf1991586a70fd13d63.tar
blog.kummerlaender.eu-ded69be933abdb3ff69e3bf1991586a70fd13d63.tar.gz
blog.kummerlaender.eu-ded69be933abdb3ff69e3bf1991586a70fd13d63.tar.bz2
blog.kummerlaender.eu-ded69be933abdb3ff69e3bf1991586a70fd13d63.tar.lz
blog.kummerlaender.eu-ded69be933abdb3ff69e3bf1991586a70fd13d63.tar.xz
blog.kummerlaender.eu-ded69be933abdb3ff69e3bf1991586a70fd13d63.tar.zst
blog.kummerlaender.eu-ded69be933abdb3ff69e3bf1991586a70fd13d63.zip
Removed contents as they were relocated into their own repository
Diffstat (limited to 'source/00_content/pages/projects/codepoint_iterator.md')
-rw-r--r--source/00_content/pages/projects/codepoint_iterator.md15
1 files changed, 0 insertions, 15 deletions
diff --git a/source/00_content/pages/projects/codepoint_iterator.md b/source/00_content/pages/projects/codepoint_iterator.md
deleted file mode 100644
index e202571..0000000
--- a/source/00_content/pages/projects/codepoint_iterator.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# 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/