December 04, 2012 Learn » MS ODBC encoding issue | |||
|---|---|---|---|
| |||
...row=0;
SQLINTEGER colLen = 0;
SQLSMALLINT buf_len = 0;
SQLINTEGER colType = 0;
while(true)
{
char... | |||
November 18, 2012 Learn » Re: Stack allocated arrays | |||
|---|---|---|---|
| |||
...work. I wish some syntax like: int len = 42; int[len] arr = stackalloc!(int)(len); | |||
November 18, 2012 Learn » Re: Stack allocated arrays | |||
|---|---|---|---|
| |||
...size_t len)(ref T[len] arr) {
this._buf = cast(T*) alloca(len * T.sizeof... | |||
November 16, 2012 GDC » Re: iphone + D, getting closer! | |||
|---|---|---|---|
| |||
...write(int fd, const(void*) buf, int len);
}
extern(C) int dhello()
{
puts("dhello is... | |||
November 04, 2012 General » Request some guidance regarding I/O | |||
|---|---|---|---|
| |||
...typeof(data))(rbuffer[0 .. len-1]));
}
} else {
len = -1;
}
}
return len;
}
void main(string[] args... | |||
October 17, 2012 Issues » [Issue 8840] New: calculating minimum of longs with following comparison compiles to wrong code when enabling the optimizer | |||
|---|---|---|---|
| |||
...long f = (f1 < f2 ? f1 : f2);
int len = (f == 0 ? 0 : printf("%llx\n", f... | |||
October 10, 2012 Issues » [Issue 8796] New: Optimizer bug on 64bit | |||
|---|---|---|---|
| |||
...sizeof] buf;
size_t len = encode(buf, ch);
final switch(len)
{
static if(T.sizeof... | |||
October 10, 2012 Genel » Bir Garip Yığıt | |||
|---|---|---|---|
| |||
...parantezsiz kullanmayı bekleriz ama ikisi de len alıyorlar (aslında len değil de, indeks (veya konum... | |||
October 10, 2012 Genel » Bir Garip Yığıt | |||
|---|---|---|---|
| |||
...size_t len) @property {
_Index++;
if((len >= _Offset) &
(len <= _Index))
{
return stack[len - _Offset];
} //else... | |||
October 09, 2012 General » Re: next_permutation and cartesian product for ranges? | |||
|---|---|---|---|
| |||
...if (len == -1) // set cache
len = cast(size_t)binomial(items.length, k);
return len... | |||
Copyright © 1999-2021 by the D Language Foundation