Search

March 14
Learn »
...auto tuple(T...)(T t){
    struct tuple{
        T me; alias me this;
    }
    return tuple(t...
March 13
Learn »
...dct.empty;
   }
   @property ref auto front() {
      return tuple(dct.keys[0], dct[dct.keys[0...
March 13
Learn »
...members of an enumeration. It generates a tuple containing all the enumeration values, which can...
March 07
DIP Ideas »
...auto args_=tuple(args[1],args[0],args[2..$]);
	} else {
		auto args_=tuple(args,int...
March 06
Issues »
...int, Tuple!(int,This)[]) value;
    SumType!(int, Tuple!(int,X)*) value;
    SumType!(int, Tuple!(int...
February 28
General »
...required for that atm.

The move hole is also an issue for tuple unpacking though.
February 17, 2024
General »
...same values, you're making it the tuple of sumtypes. If the user wants to...
February 16, 2024
General »
...another tuple: `Tuple(int, int, char, char)` can be initialised with `tuple(5, tuple(10...
February 16, 2024
General »
...areas
- no switch as expression
- no native tuple
- no tagged union
- no static array length...
February 12, 2024
General »
...std.format in its entirety
- std.typecons.Tuple
- std.array.Appender
- etc.

From how widespread...
9 10 11 12 13 14 15 16 17 18 19 20
Next ›   Last »