Search

June 04, 2009
General »
...the alternate storage behavior.  You're correct.  Len isn't initialized, and the current form...
June 04, 2009
General »
...bit :) Just a few comments:

- what's len? It's never initialized. There's no...
June 04, 2009
General »
...T value;
		int occurs;
	}

	RANK members[];

	int len;

	this(int size) {
		auto members = new RANK...
May 27, 2009
Announce »
...d_arraysetlengthT
 * _d_arraysetlengthiT
 * _d_array_cast_len
 * _d_array_slice_copy
 * _d_allocmemoryT
 * _d...
May 19, 2009
General »
...tupleof))
{
	const len = Struct.stringof.length;
	const fieldName = Struct.tupleof[i].stringof[1 + len + 2...
May 18, 2009
Learn »
...2", "3", "4", "5"]
count = randint(1, len(list1))
result = [choice(list1) for _ in xrange...
May 18, 2009
General »
...solution is to use "size" (or even "len") everywhere in D, that avoids such typos...
May 11, 2009
Learn »
...import std.stdio;

struct S
{
   size_t len;
   void* p;
   int xtra;
}

void main()
{
   string...
May 11, 2009
General »
...uint len;

mydic[x] = len = mydic.length;

Now, it's even more obvious that len...
May 06, 2009
Learn »
...the following
is true
//( file[row][0..len] ==  type.stringof ~ ' ' ~ identifier )
row = getRow(file, type...
100 101 102 103 104 105 106 107 108 109 110
Next ›   Last »