Search

March 10, 2005
General, digitalmars.D.dtl »
...at, size_t len)
        {
            size_t oldLen = at.len;
            at.length = len;
            at.length = oldLen...
March 10, 2005
Issues »
...line:
List!(E) sublist(int off, int len);
the code compiles and links without errors...
March 10, 2005
General, digitalmars.D.dtl »
...essentially cause:

  len = array.length;
  array.length = 1,000,000;
  array.length = len;

Allowing us...
March 10, 2005
General »
...int len = idioticly_long_variable_name.length;
   int[] slice = idioticly_long_variable_name[x .. len...
March 08, 2005
General, digitalmars.D.dtl »
...length + len;
    myArray[insertIndex+len..length]
      = myArray[insertIndex..length-len].dup;
    myArray[insertIndex..insertIndex+len...
March 08, 2005
General »
...return format (dst, i, Radix.Decimal);
#
# uint len = dst.length - format (dst[1..length], -i...
March 08, 2005
General »
...I still hope you'll change $ to $len or $length.. $&1?2:3 just doesn...
March 08, 2005
General »
...not 'wasted' on array length, and neither $len nor $length (nor anything else) are defined...
March 08, 2005
General »
...I'd back something like $len, #len, ^len, or @len. But I guess $length, et...
March 07, 2005
General »
Derek Parnell wrote:

I thought I would be using € for those shortly here, but...
135 136 137 138 139 140 141 142 143 144 145
Next ›   Last »