Search

February 17, 2013
LDC »
...undef, %"armbug.Rebindable!(TimeZone).Rebindable"* byval undef)
  ret %armbug.SysTime* %.this_arg
}

You get the...
February 17, 2013
General »
...05A88F70  pop         ebx
05A88F71  pop         eax
05A88F72  ret
05A88F73  mov         eax,dword ptr [___thdtbl (5AADFBCh...
February 15, 2013
Learn »
...than zero
ld AX 0;
ret;
L1:
ld AX 1;
ret;

With opcmp:

int opCmp...
February 14, 2013
Genel »
...adresal; ret;}
		auto c1 = Clock.currTime();
		point++;
		goto runOP;

	l_CMP:
		asm{ call adresal; ret...
February 10, 2013
Learn »
...ss() {
		enum Func = __traits(identifier, fun);
        enum Ret  = ReturnType!(fun).stringof;
		
        alias Args = ParameterTypeTuple!(fun...
February 08, 2013
Learn »
...know how to get function name :(
        enum Ret  = ReturnType!fun.stringof;
        alias Args = ParameterTypeTuple!fun...
February 03, 2013
General »
...loop is unrolled as a series of assignments (ret[0] = a, ret[1] = b …)
February 03, 2013
General »
...can replace the loop in S with
ret[] = a[];
Which should be even faster.

Also...
February 03, 2013
General »
...use
"T0[T.length]ret=void;"
instead of
"T0[T.length]ret;"
inside the definition...
February 03, 2013
General »
...T0[T.length]ret;
	foreach(i,ai;a)
		ret[i]=ai;
	return ret;
}

void main...
92 93 94 95 96 97 98 99 100 101 102 103
Next ›   Last »