Search

September 13, 2023
Learn »
...import std.parallelism: task;
import std.typecons: tuple;

struct MainEngine {
    int rno;
    string firstname;
    string...
September 09, 2023
General »
This is exactly my point. The Tuple DIP has been around for years under the...
September 09, 2023
General »
...do they know what competition is doing?

Tuple DIP predates this IVY thing, what are...
September 09, 2023
Issues »
...foo"));
```

Prior to 2.103, this outputs tuple(foo). After, it outputs ().

Introduced here: https...
September 07, 2023
General »
...i've been waiting for tagged union / tuple since forever

IVY = bureaucracy + religion, recipe for...
September 06, 2023
General »
...typecons : tuple;

void mock()
{
    zip([1,2,3], ["a", "b", "c"])
            .map!( i => tuple("", i...
September 01, 2023
Learn »
...this example:
//   ldc2 -c test.d
// output:
//   tuple("object", "core", "main", "thisModule")

// just a random...
August 28, 2023
Issues »
...tuple;


void foo() {
    if( __ctfe ){
        zip([1,2,3], ["a", "b", "c"])
            .map!( i => tuple...
August 23, 2023
General »
...but yeah, what others say about the tuple thing is prolly the best thing by...
August 23, 2023
General »
...The order of the fields in the tuple matches the order in which the fields...
20 21 22 23 24 25 26 27 28 29 30 31
Next ›   Last »