Search

May 11, 2023
General »
...ll add:

- `sizeof(T[0]) == 0`, but `sizeof(Tuple!()) == 1`. I'm not sure why.

May 11, 2023
General »
...also have `[int, string]` be a tuple type.

- Tuple indices (presumably should) need to be...
May 10, 2023
General »
...by index, otherwise unstructured.

What is a `Tuple!(T, T)`? Something that contains two `T...
May 10, 2023
Issues »
...not `const`.
  Solved by creating a separate tuple of `Rebindable` ranges for this case.

https...
May 07, 2023
General »
...already has some tuple support [2]: in particular a single-element tuple is indicated with...
May 07, 2023
Issues »
...tuple(test.functor5!(bool).functor5(bool).Functor,
test.functor3(int*).Functor).Tuple).functor10(test.tuple...
May 06, 2023
Issues »
...return cond;
}

auto tuple(Values...)(Values values)
{
    struct Tuple
    {
        Values values;
    }
    return Tuple(values);
}

auto...
May 06, 2023
General »
...at all. With parentheses for tuple syntax, the 1-tuple for *values* must be expressed...
May 05, 2023
General »
...allow semantically-invalid types like `ref(int)[]` and `Tuple!(ref(int), ref(int))` to parse.
May 04, 2023
Issues »
...loughran.colvin@gmail.com

struct G(H)
{
    Tuple!(R) S;
}

struct BB(H)
{
    H* YC...
25 26 27 28 29 30 31 32 33 34 35 36
Next ›   Last »