Search

October 17, 2023
Genel »
...enum size = T.sizeof / ES;

  auto readUnits(ref R data)
  {
    T result;
    auto len = size...
October 12, 2023
General »
...it doesn't work:

So far I have fixed:
* redefinition of `size_t`
* appending of...
October 11, 2023
General »
...the member function. For example:

```d
  public:

    size_t length() {
      import std.range.primitives : walkLength...
October 10, 2023
General »
...range/primitives.d(1795):
`walkLength(Range)(Range range, const size_t upTo)`

- Jonathan M Davis


October 11, 2023
General »
...import std.algorithm;// : splitter;

  size_t length() => str.length;
  size_t wordCount() => str.splitter.walkLength...
October 09, 2023
Learn »
...stdio;
import core.bitop;

void main() {
  const size_t ONE_G = 1 << 30;
  char[][128...
October 09, 2023
Learn »
...struct DATA(string str, T, size_t s)
{
  enum title = str;
  T[s] data;
}

void...
October 06, 2023
Learn »
...https://github.com/MartinNowak/bloom, only accept size_t as key.


Is there some library...
October 05, 2023
Learn »
... }
    arr[index] = value;
  }

  ref opIndex(size_t index)
  {
    scope(exit)
    ...
October 05, 2023
Learn »
...custom type.

    struct S(T)
    {
        T[] arr;

        T opIndex(size_t index) const
        {
            assert(index...
32 33 34 35 36 37 38 39 40 41 42 43
Next ›   Last »