May 18 General » Re: Proposed Changes to the Range API for Phobos v3 | |||
|---|---|---|---|
| |||
...for their opDollar to be size_t, since size_t is not infinite. The proposal... | |||
May 18 General » Re: Proposed Changes to the Range API for Phobos v3 | |||
|---|---|---|---|
| |||
...to size_t, since length already has to be size_t, and I don't... | |||
May 18 General » Re: Proposed Changes to the Range API for Phobos v3 | |||
|---|---|---|---|
| |||
...be size_t, I'm increasingly tempted to just require that $ be size_t as... | |||
May 18 General » Re: Proposed Changes to the Range API for Phobos v3 | |||
|---|---|---|---|
| |||
...size_t`. But I'm not sure. But if that is the intention, obviously size... | |||
May 18 Genel » Re: AI ile FIFO | |||
|---|---|---|---|
| |||
...Stack(size_t size, T = int) {
private T[size + 1] buffer;
private size_t head... | |||
May 18 Genel » Re: AI ile FIFO | |||
|---|---|---|---|
| |||
...int size) {
buffer = new T[size];
front = 0;
rear = 0;
capacity = size;
}
void push(T... | |||
May 17 DIP Ideas » Parameter storage classes on foreach variables | |||
|---|---|---|---|
| |||
...xs = xs[];
for (size_t __i = 0; __xs.length > 0; ++__i)
{
size_t i = __i... | |||
May 17 Issues » [Issue 24554] New: Clarrification for bad codegen on postfix operators | |||
|---|---|---|---|
| |||
...align 4 ; [#uses = 4, size/byte = 4] %o...add, which it shouldn't be. Source: https... | |||
May 17 Genel » AI ile FIFO | |||
|---|---|---|---|
| |||
...T) {
private T[] data;
private size_t capacity;
private size_t size;
this(size_t... | |||
May 17 DIP Ideas » Re: extending foreach for keyed ranges and other usage of datastructures | |||
|---|---|---|---|
| |||
...the index for some math; I find size_t style indexs insane and would happily... | |||
Copyright © 1999-2021 by the D Language Foundation