Search

April 02, 2022
Learn »
...Value (also Variant)
- Index Entries are a tuple of the form (PrimaryKey, Value)

Each index...
April 02, 2022
Issues »
...template Tuple(Specs)
{
    enum areCompatibleTuples(Tup2)(Tuple tup1, Tup2 tup2)
    {
        tup1.field == tup2;
    }

    struct Tuple...
April 01, 2022
Issues »
...following code:

immutable int a;
auto b = [tuple(a, a)].assocArray;

assocArray should be able...
March 27, 2022
Issues »
...two bugs preventing users from using
  the tuple returned by `__traits(parameters)` bound to an...
March 23, 2022
Issues »
https://issues.dlang.org/show_bug.cgi?id=15730

moonlightsentinel@disroot.org changed:

           What    |Removed...
March 14, 2022
Issues »
...two bugs preventing users from using
  the tuple returned by `__traits(parameters)` bound to an...
March 12, 2022
Learn »
...includes manifest constant enums in the returned tuple.

What is the correct way to statically...
March 11, 2022
Issues »
...two bugs preventing users from using
  the tuple returned by `__traits(parameters)` bound to an...
March 10, 2022
Issues »
...22736 - Add destructuring bind for std.typecons.Tuple tuples

https://github.com/dlang/phobos/pull...
March 04, 2022
Learn »
...T)(T tuple) {
  return tuple[0];
}

// Ditto
auto chunkOf(T)(T tuple) {
  return tuple[1...
44 45 46 47 48 49 50 51 52 53 54 55
Next ›   Last »