Search

February 13, 2015
Learn »
...conn);
		cmd.sql = sql;
		ulong ret;
		cmd.execSQL(ret);
		return ret;
	}
	
	public static CLS[] resultSetToObjArray...
February 12, 2015
Issues »
...auto ret = appender!string();
    ret.reserve(40);
    foreach (i; 0 .. 8) {
    if (i > 0) ret...
February 10, 2015
Issues »
...dg = { return systemCall() };   // should be OK
    auto ret = { return systemCall() }();  // system cannot call in safe...
February 06, 2015
General »
...size);
numeric.d:        ret = uninitializedArray!(Complex!F[])(range.length);
numeric.d:        ret = uninitializedArray!(Complex!F...
February 05, 2015
Issues »
...48: 8B. E5
        pop     rbp                                     ; 002B _ 5D
        ret                                             ; 002C _ C3
_D4bug24opndFS4bug26X86RegZS4bug27X86Opnd ENDP

That's the...
February 03, 2015
General »
...the common subexpression removed
            add     ESP,4
            ret

See the volatile semantics noted in the...
February 02, 2015
General »
...foo
  ---
  _D3foo4testFZkL:
        mov     EAX,01234h
        mov     EAX,[EAX]
        ret

Note that was an unoptimized build.
February 02, 2015
Issues »
...string ret;
    foreach(i,vali ; namesCall){
      ret~=foo2_name~`.`~vali~`=`~`args[`~i.to!string~`];`;
    }
    ret...
January 30, 2015
Learn »
...of char,

auto ret = thing.getString;

should compile and result in ret being a char...
January 30, 2015
Learn »
...would be deduced from arg.

But string ret = thing.getString(); won't compile because it...
61 62 63 64 65 66 67 68 69 70 71 72
Next ›   Last »