aboutsummaryrefslogtreecommitdiff
path: root/devel/srell/pkg-descr
diff options
context:
space:
mode:
Diffstat (limited to 'devel/srell/pkg-descr')
-rw-r--r--devel/srell/pkg-descr19
1 files changed, 19 insertions, 0 deletions
diff --git a/devel/srell/pkg-descr b/devel/srell/pkg-descr
new file mode 100644
index 000000000000..c1276e066a43
--- /dev/null
+++ b/devel/srell/pkg-descr
@@ -0,0 +1,19 @@
+SRELL (std::regex-like library) is a Unicode-aware regular expression template
+library for C++.
+
+* Header-only and the same class design as std::regex
+
+SRELL is a header-only template library and does not need any
+installation. SRELL has an ECMAScript (JavaScript) compatible regular expression
+engine wrapped into the same class design as std::regex. As APIs are compatible,
+SRELL can be used in the same way as std::regex (or boost::regex on which
+std::regex is based).
+
+* Unicode-specific implementation
+
+SRELL has native support for Unicode.
+
+* Consideration for ignore-case (icase) search
+
+SRELL has been tuned up not to slow down remarkably when case-insensitive
+(icase) search is performed.