January 30, 2015 Learn » Deducing a template retrun parameter type based on an assignment? | |||
|---|---|---|---|
| |||
...was being assigned to like so. string ret = thing.getString(); Apparently that does not work... | |||
January 28, 2015 Learn » why there is no TBase in thrift for dlang? | |||
|---|---|---|---|
| |||
...Cmd ret; TMemoryBuffer trans = new TMemoryBuffer(data); auto prot = new TCompactProtocol!TMemoryBuffer(trans); ret.read... | |||
January 23, 2015 General » Re: sortUniq | |||
|---|---|---|---|
| |||
Loosely-related, compiling ... auto ret = arr.filter!(myFilter()); ... I got: Error: closures are not yet... | |||
January 20, 2015 Learn » rebind of const class variables | |||
|---|---|---|---|
| |||
...maximum() const {
auto ret = this;
while (ret.right_) {
ret = ret.right_;
}
return ret;
}
}
```
It failed... | |||
January 05, 2015 Issues » [Issue 13930] std.concurrency can't send immutable AA to another thread | |||
|---|---|---|---|
| |||
...d(760): Error: cannot modify immutable expression ret.__expand_field_0 bug.d(5): Error... | |||
December 28, 2014 LDC » linking C++/D static library - what is "crt0.o"? | |||
|---|---|---|---|
| |||
...void main() {
int ret = add(1, 2);
writeln("1 + 2 = " ~ to!string(ret));
}
</main.d... | |||
December 24, 2014 Learn » Enum template with mixin, need 'this' | |||
|---|---|---|---|
| |||
...length] ret;
foreach (i, bit; Bits)
{
if (mixin(isSet!bit))
{
ret[i] = bit;
}
}
return ret... | |||
December 17, 2014 Learn » Re: VLA in Assembler | |||
|---|---|---|---|
| |||
...pop ebx 8084ecd: c9 leave 8084ece: c3 ret Before the call to leave, which puts... | |||
December 17, 2014 Learn » Re: VLA in Assembler | |||
|---|---|---|---|
| |||
...is a ref, so need to dig...
ret;
}
}
try and see ;) Actually it may be... | |||
December 16, 2014 General » Re: Intel MPX | |||
|---|---|---|---|
| |||
...bounds, and even modified versions of call/ret/jump. ​They are working in the ABI... | |||
Copyright © 1999-2021 by the D Language Foundation