Search

February 25, 2022
Genel »
...yayınladığım yapıya (SIRALA) göre en önemli fark, Tuple gitti JSON geldi ve 3. bir AA...
February 23, 2022
General »
...a very big deal. (E.g., syntax for tuple unpacking would be significantly more impactful.)
February 22, 2022
Genel »
...C] dict;
  C[F] freq;

  @property add(Tuple!(C, F, S) chr) {
    dict[chr[0...
February 17, 2022
Announce »
...this is allowed:

```d
alias Tuple(T...) = T;

void foo()
{
    Tuple!(int, int) tup;

    auto...
February 11, 2022
Learn »
...size;
    private Tuple!(KT, VT)[] a;

    this(int size)
    {
        _size = size;
    }

    protected Tuple!(bool, VT...
February 09, 2022
Learn »
...would do this.

```
import std;

alias Record = Tuple!(string, string, string);

static immutable string[][] table...
February 09, 2022
Learn »
...import std.csv, std.stdio;

alias Record = Tuple!(string, string, string);

immutable string[][] table;

shared...
February 08, 2022
Issues »
...com> ---
also I somewhat suspicious about `return tuple(cast(WidgetI)this, point);`
lines in crush...
February 07, 2022
Issues »
...22736 - Add destructuring bind for std.typecons.Tuple tuples

https://github.com/dlang/phobos/pull...
February 04, 2022
Issues »
...Tuple tuples" fixing this issue:

- Fix Issue 22736 - Add destructuring bind for std.typecons.Tuple...
45 46 47 48 49 50 51 52 53 54 55 56
Next ›   Last »