Search

July 22, 2012
General »
...x is ", x)
	for i := 0; i < len(x); i++ {
                e := x[i]
		fmt.Printf...
July 11, 2012
c++.stlsoft »
...it complains for example that c_str_len_w cannot convert arguments. By browsing the...
July 01, 2012
Issues »
...return 1
    return 0

print sorted(range(len(a)), cmp=cmp)


Outputs:
[11, 19, 22...
June 17, 2012
General »
...len];
    }

    void popFront() {
        len = 0;
        while (len < chunkLength && !r.empty) {
            chunk[len] = r.front;
            len...
June 11, 2012
Issues »
...uint(args[1]);

    enum uint max_int_len = 12;
    enum uint buf_size = 1_000...
June 08, 2012
Learn »
...result;
  for (size_t i = 0; i < len; i++)
  {
    bool b = opIndex(i);
    result = dg...
June 05, 2012
General »
...string itemName, int len)
      /*pure nothrow*/ {
        string[] result;
        foreach (i; 0 .. len)
          result ~= xformat("%s...
June 02, 2012
Issues »
...t matter
    in { assert(i < len); }
    body {
        return p[len];
    }
}
---
?

And this is valid:
---
void...
June 02, 2012
Issues »
...pure;

struct MyArray { int* p; size_t len; }
void** h(in MyArray arg) pure;
---
The...
May 30, 2012
Learn »
...bool[] redundancy, const ushort[LEN - 1][] matrixes, const int[2^^LEN] bits, const int[] numbers...
67 68 69 70 71 72 73 74 75 76 77 78
Next ›   Last »