Search

February 04, 2022
Issues »
...specify the names when constructing the tuple?

-> Sometimes, the tuple is constructed in more than...
February 04, 2022
Issues »
...ref T tuple)
if (isTuple!T && is(typeof(fun(tuple.expand))))
{
        return fun(tuple.expand...
January 30, 2022
Genel »
...stdio;

auto foo() {
  import std.typecons : tuple;
  return tuple!("x", "y")(1, 2);
}

void main...
January 30, 2022
Genel »
...ile birlikte geliştirirsek; bu yapı (struct), adeta Tuple ile yarışırcasına D programlama dilinde şu şekilde...
January 27, 2022
General »
...a struct type and gives you
> a tuple of getters

I've done something similar...
January 27, 2022
Learn »
...prints this:
```
1
tuple(module onlineapp)
2
tuple(module onlineapp)
3
tuple(module onlineapp, module...
January 26, 2022
General »
...a struct type and gives you a tuple of getters (each taking a struct and...
January 25, 2022
Learn »
...LINE__)
    {
         writeln(file,":",line," ",t.expand);
    }

    void main()
    {
       f("hello ", 123);
       g(tuple("hello ",123));
    }
January 22, 2022
Learn »
Thanks, second options is what I need. (In my case forwarding is more complex because...
January 22, 2022
Learn »
On Saturday, 22 January 2022 at 18:00:58 UTC, vit wrote:

Scratch the previous...
46 47 48 49 50 51 52 53 54 55 56 57
Next ›   Last »