Search

May 18
General »
...for their opDollar to be size_t, since size_t is not infinite.

The proposal...
May 18
General »
...to size_t, since length already has to be size_t, and I don't...
May 18
General »
...be size_t, I'm increasingly tempted to just require that $ be size_t as...
May 18
General »
...size_t`. But I'm not sure.

But if that is the intention, obviously size...
May 18
Genel »
...Stack(size_t size, T = int) {
  private T[size + 1] buffer;
  private size_t head...
May 18
Genel »
...int size) {
        buffer = new T[size];
        front = 0;
        rear = 0;
        capacity = size;
    }

    void push(T...
May 17
DIP Ideas »
...xs = xs[];
    for (size_t __i = 0; __xs.length > 0; ++__i)
    {
        size_t i = __i...
May 17
Issues »
...align 4                        ; [#uses = 4, size/byte = 4]
  %o...add, which it shouldn't be.

Source: https...
May 17
Genel »
...T) {
    private T[] data;
    private size_t capacity;
    private size_t size;

    this(size_t...
May 17
DIP Ideas »
...the index for some math; I find size_t style indexs insane and would happily...
8 9 10 11 12 13 14 15 16 17 18 19
Next ›   Last »