rcstring 0.0.2
Reference Countered string
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
RCString a reference counted string
The module rcstring provides everything necessary to replace D's build-in strings with a reference counted version. It should be as easy as replacing all occurrences of the keyword string with String.
Additional, to String there are WString and DString defined in this module.
String str = "Hello World";
assert(str.front == "H");
assert(str.back == "d");
auto slice = str[1 .. 5];
assert(slice == "ello");
slice.popFront();
assert(slice == "llo");
- Registered by Robert Schadek
- 0.0.2 released 8 years ago
- burner/std.rcstring
- github.com/burner/std.rcstring
- BOOST
- Copyright © 2016, burner
- Authors:
- Dependencies:
- none
- Versions:
-
0.0.6 2016-Sep-29 0.0.5 2016-Apr-28 0.0.4 2016-Apr-28 0.0.3 2016-Apr-28 0.0.2 2016-Mar-22 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
0 downloads this month
-
126 downloads total
-
- Score:
- 1.4
- Short URL:
- rcstring.dub.pm