September 08, 2013 Issues » [Issue 10985] Compiler doesn't attempt to inline non-templated functions from libraries (even having the full source) | |||
|---|---|---|---|
| |||
...EAX
mov EAX,ECX
add RSP,068h
ret
With mylib.d passed on the command... | |||
September 07, 2013 LDC » Re: Building latest LDC on windows | |||
|---|---|---|---|
| |||
...int foo() { asm { naked; xor EAX, EAX; ret; } }
ldc2 test.d -c
When looking obj... | |||
September 07, 2013 Learn » nothrow function to tell if a string can be converted to a number? | |||
|---|---|---|---|
| |||
...throws
try{
import std.conv:to;
auto ret=a.to!double;
}
catch
return false;
return... | |||
September 05, 2013 Issues » [Issue 10821] .byKey erroneously returns a null key | |||
|---|---|---|---|
| |||
...removeMe = false;
int ret;
if ((ret = dg(e, removeMe)) != 0)
return ret;
if (removeMe)
{
auto... | |||
September 04, 2013 Issues » [Issue 10962] New: Wrong implicit conversion of enum in const function | |||
|---|---|---|---|
| |||
...init }
E e1;
E foo() const {
//E ret = e1 ? E.init : e1; // OK
//E e2... | |||
September 02, 2013 General » Structs can't be zero bytes in size? | |||
|---|---|---|---|
| |||
...read!ubyte(); ret = ResponseSuccess(); break; case response_failure: ResponseFailure failure = conn.read!ResponseFailure(); ret = failure... | |||
September 01, 2013 Announce » XML RPC Client and Server - meet xmlrpc-d | |||
|---|---|---|---|
| |||
...but we call it with strings:
string ret = client.call!("multiply", string)("6", "9");
----------
Take... | |||
August 26, 2013 Learn » RePost: Help to convert a code to D | |||
|---|---|---|---|
| |||
...private void MoveArquivos()
{
string[] filters = new[] { "*.REM", "*.RET" };
for (int i = 0; i < 2; i... | |||
August 26, 2013 General » Help to convert a code to D | |||
|---|---|---|---|
| |||
...private void MoveArquivos()
{
string[] filters = new[] { "*.REM", "*.RET" };
for (int i = 0; i < 2; i... | |||
August 23, 2013 Announce » I'm porting some go code to D | |||
|---|---|---|---|
| |||
...popFront() {
T ret;
synchronized (lock) {
ret = buf.value;
buf = buf.next;
length--;
}
return ret;
}
size... | |||
Copyright © 1999-2021 by the D Language Foundation