January 05, 2012 Learn » Re: Problem with Hiredis Binding | |||
|---|---|---|---|
| |||
...when type is REDIS_REPLY_INTEGER */
int len; /* Length of string */
char* str; /* Used for... | |||
December 11, 2011 General » A benchmark, mostly GC | |||
|---|---|---|---|
| |||
...def count_changes(amount_cents, coins):
n = len(coins)
cycle = max([c+1 for c... | |||
December 02, 2011 Issues » [Issue 7054] New: formatting fixed width string fields w/utf | |||
|---|---|---|---|
| |||
...auto len = t.length; auto utflen = std.utf.count (t); auto tlen = width + len - utflen... | |||
December 01, 2011 Learn » Split a range into equal parts? | |||
|---|---|---|---|
| |||
...result ~= src[];
break;
}
result ~= src[0 .. len];
src.popFrontN(len);
iter++;
}
return result;
}
void main... | |||
December 01, 2011 Issues » [Issue 7043] New: CTFE: ICE illegal reference value 0LU | |||
|---|---|---|---|
| |||
...demangleZSymbols(string sym)
{
char[] res;
try
auto len = parse!uint(sym);
catch (Exception e)
sym... | |||
November 28, 2011 Learn » Re: dup method const or not? | |||
|---|---|---|---|
| |||
...const(BitArray) foo;
BitArray bar;
bar.len = foo.len;
bar.ptr = foo.ptr[0 .. foo... | |||
November 25, 2011 c++.stlsoft » STLSoft 1.9.110 released | |||
|---|---|---|---|
| |||
...of CWnd-related overloads of c_str_len() shims
PlatformSTL:
============
~ platformstl/platformstl.h:
+ added discrimination... | |||
November 20, 2011 General » Re: Concepts vs template constraints - the practical approach | |||
|---|---|---|---|
| |||
...met: deneme.d(54697): Error: no property 'len' for type 'YourClass' deneme.d(54709): Error... | |||
November 20, 2011 General » Re: Concepts vs template constraints - the practical approach | |||
|---|---|---|---|
| |||
...assert(is(A.type)); > static assert(A.len >= 0); > static assert(is(typeof(A.init... | |||
November 20, 2011 General » Re: Concepts vs template constraints - the practical approach | |||
|---|---|---|---|
| |||
...A.type)");
static assert(A.len >= 0, "Error 2: A.len < 0");
static assert(is... | |||
Copyright © 1999-2021 by the D Language Foundation