Search

August 02, 2021
Issues »
...dlang/druntime pull request #3534 "Mark as pure core.sys.posix.string: memccpy, stpcpy, stpncpy...
August 02, 2021
Issues »
...22169

          Issue ID: 22169
           Summary: Mark as pure core.sys.posix.string: memccpy, stpcpy,
                    stpncpy...
August 01, 2021
General »
...than Godot, but if you want a pure D game engine you might consider it...
July 31, 2021
Learn »
...etc.  But we can't all eat *pure* syntactic sugar or we'd die of...
July 30, 2021
General »
...const, or tail const in D; just pure transitive const.

Also remember that casting away...
July 29, 2021
General »
...use this:

int ToInt(in ulong u) pure
{
	assert(u<=int.max);
	return cast(int...
July 29, 2021
Issues »
...like a great way to violate purity:

pure int fun(int* x) {
    enum int* addr...
July 29, 2021
Issues »
...net


As does making the global immutable:

pure int fun(int* x) {
    static immutable int...
July 29, 2021
Issues »
...enum appears to work:

---

__gshared int a;

pure int fun(int* x) {
    enum int* addr...
July 28, 2021
Issues »
https://issues.dlang.org/show_bug.cgi?id=22154

--- Comment #2 from Andrei Alexandrescu <andrei...
113 114 115 116 117 118 119 120 121 122 123
Next ›   Last »