Search

April 03, 2023
Learn »
...ref CommPair[] commPair, string filename) {
	import std.regex;
	auto s = readText(filename);
	auto ctr = ctRegex...
March 31, 2023
General »
...fail

    // import std.regex;
    // import std.traits;
    // static assert(isInstanceOf!(Regex, Regex!char)); // now fails...
March 22, 2023
General »
...they are using an alias from std (`Regex`), as long as the compiler will generate...
March 22, 2023
General »
...they are using an alias from std (`Regex`), as long as the compiler will generate...
March 20, 2023
Learn »
Thanks Adam.
March 20, 2023
Learn »
Try

static import std.file;
string s = std.file.readText("filename.txt");


http://phobos.dpldocs...
March 20, 2023
Learn »
I've been looking through our Library documentation and having trouble finding what I want...
March 19, 2023
Learn »
...as an example:

```d
import std.regex;
import std.regex : matchFirst;
```

What technical differences does...
March 17, 2023
General »
...isInstanceOf` doesn't work as expected, because `Regex` is an alias, and `isInstanceOf` internally uses...
March 17, 2023
General »
...that `Regex` is an alias, and `isInstanceOf` can't do its job because `Regex` is...
1 2 3 4 5 6 7 8 9 10 11 12
Next ›   Last »