Search

November 11, 2021
General »
...t even know it because you didn't...or (insert your cache size here). Over time...
November 11, 2021
Learn »
...size_t`. Multiplication of two ints is still an int though, and you can't...
November 11, 2021
Learn »
...the `size_t`.

`cast(size_t)w * w` or the declaration `enum  : size_t { w...
November 11, 2021
Learn »
...you on 32-bit OS? I believe `size_t` is 32 bits on 32 bit...
November 11, 2021
Learn »
...enum w = 100_000;
  size_t b = w * w;
  // size_t b = 100000 * 100000; // ???
  assert...
November 11, 2021
Learn »
...int64_t i; /* int value */
    double  d; /* double value */
  }
}
```

If you check the size of...
November 11, 2021
Learn »
...int64_t i; /* int value */
        double  d; /* double value */
      }
    }
    ```

    If you check the size of...
November 11, 2021
Learn »
...Version:

void main(){
  enum t = 10_000;
  size_t a = t * t;
  assert(a == 100...
November 10, 2021
Issues »
...signature:

```
size_t count(T, P : bool delegate(T))(T[] array, P predicate) {
    size_t...
November 09, 2021
Learn »
...static void* (*ppmalloc)(size_t) = malloc;`
to `static void* (*ppmalloc)(size_t) = &malloc;`

may solve...
123 124 125 126 127 128 129 130 131 132 133
Next ›   Last »