January 31, 2013 General » Re: Possible @property compromise | |||
|---|---|---|---|
| |||
...outer._len;
}
alias this = opCall;
void opAssign(int v) const
{
outer._len = v;
}
}
Len length... | |||
January 31, 2013 General » Re: Deque impl. | |||
|---|---|---|---|
| |||
...Array{
struct Payload{
T* data;
size_t len;
//... other stuff
}
Payload* payload;
Allocator alloc; //a... | |||
January 29, 2013 Learn » Re: Garbage collector doesn't collect? | |||
|---|---|---|---|
| |||
...file.read(foo);
//allocate new string
immutable len = file.length;
void* p = GC.malloc(file... | |||
January 17, 2013 Learn » Re: MS ODBC encoding issue | |||
|---|---|---|---|
| |||
...DESC_NAME, sz_buf.ptr, 256, &buf_len, cast(void*)0);
SQLColAttribute(hStmt, cast(ushort... | |||
January 09, 2013 Learn » Re: dynamic arrays of immutable question: Are the elements actually mutable | |||
|---|---|---|---|
| |||
...len = arr2.length;
arr2.ptr[len] = cast(int)len; //HERE
arr2 = arr2.ptr[0 .. len... | |||
December 29, 2012 General » Python-like slicing and handling UTF-8 strings as a bonus | |||
|---|---|---|---|
| |||
...full_len = s.length;
ptrdiff_t len;
if (full_len > ptrdiff_t.max)
len = ptrdiff... | |||
December 20, 2012 Issues » [Issue 8061] std.algorithm.joiner breaks when used with InputRangeObject | |||
|---|---|---|---|
| |||
...auto len = walkLength(val.save); If this line is artificially modified to set len to... | |||
December 13, 2012 General » Re: No bounds checking for dynamic arrays at compile time? | |||
|---|---|---|---|
| |||
...int len;
readf(" %s", &len);
array.length = len;
}
Well, now it depends on what len... | |||
December 10, 2012 Learn » Why the lack of networky bits in the standard library | |||
|---|---|---|---|
| |||
...define PACKET_DATA_OFFSET_DEFAULT (
ETHER_HDR_LEN + sizeof(struct iphdr) + \
sizeof(struct udphdr))
That... | |||
December 06, 2012 Learn » Re: MS ODBC encoding issue | |||
|---|---|---|---|
| |||
...row=0;
SQLINTEGER colLen = 0;
SQLSMALLINT buf_len = 0;
SQLINTEGER colType = 0;
while(true)
{
char... | |||
Copyright © 1999-2021 by the D Language Foundation