Search

June 21, 2022
Issues »
...internal tuple bound violation" fixing this issue:

- Fix 23167 - inaccurate diagnostic for internal tuple bound...
June 15, 2022
Learn »
...Def, XML);
pragma(msg, ALL.stringof);
```
reports `tuple(this.x, this.y)`.  Why is `this...
June 14, 2022
LDC »
...typecons;
import std.meta;

Tuple!(int, int, int) iAMfunction() {
    return tuple(1, 2, 3);
}

extern...
June 14, 2022
LDC »
...typecons;
import std.meta;

Tuple!(int, int, int) iAMfunction() {
    return tuple(1, 2, 3);
}
int...
June 13, 2022
Learn »
...std.sumtype;

struct Tuple
{
	void opAssign(Tuple rhs) {}
}

alias ParseErrorOr = SumType!Tuple;

auto parserOr() {
	ParseErrorOr...
June 13, 2022
Learn »
...auto parseNothing(I)(I i) {
    return parseErrorOr(tuple(i[0..0],i));
}

void main()
{
    enum...
June 13, 2022
Learn »
...auto parseNothing(I)(I i) {
    return parseErrorOr(tuple(i[0..0],i));
}

void main()
{
    enum...
June 12, 2022
General »
...end up being library in std. (sumtype/tuple)
    - runtime/std being too dependent
    - everything in...
June 12, 2022
General »
...possibility to skip what values of the tuple you want, maybe with a underscore like...
June 10, 2022
Announce »
...arguments, you can put them in a tuple.

https://github.com/CyberShadow/Digger/blob/7c7dd167aea2214d594bab932ea4e41e5f0a357a...
39 40 41 42 43 44 45 46 47 48 49 50
Next ›   Last »