Search

January 26, 2022
General »
...getters. I suspect using the new(-ish) alias assign feature would help in defining that...
January 26, 2022
General »
...data1, X data2) {
	foreach (field; FieldNameTuple!X) {
		alias Type = typeof(__traits(getMember, X, field));
		if...
January 26, 2022
Learn »
...int.min is still a
  // negative number.
  alias problematics = AliasSeq!(
    byte, "negative 128",
    short, "negative...
January 26, 2022
Issues »
...void foo(T)(auto ref T arg) {}
alias bar = foo!int;

produces the error message...
January 26, 2022
Issues »
...string name)
{
        alias Ref = __traits(getMember, T, name);

        alias Type1 = typeof(Ref);
        alias Type2 = typeof...
January 25, 2022
Learn »
...int.min is still a
  // negative number.
  alias problematics = AliasSeq!(
    byte, "negative 128",
    short, "negative...
January 25, 2022
Learn »
...front % R.length){
        static foreach(enum I, alias arg; r){
        	case I:
            	return arg;
        }

        default...
January 24, 2022
Learn »
...string b, string c) {
  /* stuff */
}

// --- main.d
alias T = extern (C) void function(int, string...
January 24, 2022
Genel »
...ulaşamayız. O yüzden sorunlu değerleri
  // burada hallediyorouz.

  alias sorunluDeğerler = AliasSeq!(
    byte, "eksi 128",
    short, "eksi...
January 22, 2022
Learn »
...apply(alias fn, Args...)(Args args)
if (allSatisfy!(isRcPtr, Args)) {

    @property auto ref elm(alias...
249 250 251 252 253 254 255 256 257 258 259
Next ›   Last »