Lines Matching refs:pure

365 @safe @nogc pure nothrow unittest
462 private static ulong gcd(ulong a, ulong b) @safe pure nothrow @nogc
473 private static ulong primeFactorsOnly(ulong n) @safe pure nothrow @nogc
489 @safe pure nothrow unittest
501 ulong a, ulong c) @safe pure nothrow @nogc
535 this(UIntType x0) @safe pure nothrow @nogc
543 void seed(UIntType x0 = 1) @safe pure nothrow @nogc
558 void popFront() @safe pure nothrow @nogc
594 @property UIntType front() const @safe pure nothrow @nogc
600 @property typeof(this) save() const @safe pure nothrow @nogc
870 this(UIntType value) @safe pure nothrow @nogc
880 private static State defaultState() @safe pure nothrow @nogc
896 void seed()(UIntType value = defaultSeed) @safe pure nothrow @nogc
979 void popFront() @safe pure nothrow @nogc
1043 @property UIntType front() @safe const pure nothrow @nogc
1049 @property typeof(this) save() @safe const pure nothrow @nogc
1176 @safe @nogc pure nothrow unittest
1210 @safe @nogc pure nothrow unittest
1392 this()(UIntType x0) @safe pure nothrow @nogc
1404 void seed()(UIntType x0) @safe pure nothrow @nogc
1466 UIntType front() const @safe pure nothrow @nogc
1480 void popFront() @safe pure nothrow @nogc
1526 typeof(this) save() const @safe pure nothrow @nogc
1737 static ulong fmix64(ulong k) @nogc nothrow pure @safe
2448 pure @safe unittest
2897 () @nogc nothrow pure { randomShuffle(sa[], gen1); }();
3128 this(this) pure nothrow @nogc @trusted
3141 this(size_t numChoices) pure nothrow @nogc @trusted
3154 size_t length() const pure nothrow @nogc @safe @property {return _length;}
3156 ~this() pure nothrow @nogc @trusted
3164 bool opIndex(size_t index) const pure nothrow @nogc @trusted
3174 void opIndexAssign(bool value, size_t index) pure nothrow @nogc @trusted
3384 @nogc nothrow pure @safe unittest
3958 bool empty() @property const pure nothrow { return r.empty; }
3959 auto front() @property pure nothrow { return r.front; }
3960 void popFront() pure nothrow { r.popFront(); }