March 01, 2023 Learn » Re: How would the equivalent C type be in D? | |||
|---|---|---|---|
| |||
...null; // because `value` is null, the first index also lies at null. assert(&value[0... | |||
March 01, 2023 Learn » How would the equivalent C type be in D? | |||
|---|---|---|---|
| |||
...org/releases/X11R7.7/doc/libxcb/tutorial/index.html) tutorial to learn XCB and I... | |||
February 26, 2023 General » Re: my new favourite wrong code bug | |||
|---|---|---|---|
| |||
...255 : 0; --> xor EBX,EBX // 1 foreach index counter set to zero mov RAX,-8... | |||
February 26, 2023 General » Re: Why is std.regex slow, well here is one reason! | |||
|---|---|---|---|
| |||
...get!ulong;
size_t parent_idx = 0; // index in parent_stack to which this item... | |||
February 23, 2023 General » Why is std.regex slow, well here is one reason! | |||
|---|---|---|---|
| |||
...C)(const scope C[] input, size_t index) {return 0;}
bool isGraphical()(dchar c) { return... | |||
February 23, 2023 Issues » [Issue 23729] ignore custom object.d for CTFE needs | |||
|---|---|---|---|
| |||
...9')
index = index * 10 + (ubyte(format[i++]) - ubyte('0'));
if (!isQ)
result ~= args[index];
else... | |||
February 22, 2023 General » Re: A 'lazy' compilation mode to make writting multiplatform code easier without having to clutter the project | |||
|---|---|---|---|
| |||
...if (index >= 0)
{
memmove(fds.ptr + index, // dest
fds.ptr + index + 1, // src
(_count - index... | |||
February 22, 2023 Issues » [Issue 21175] opAssign should be allowed to return void and let the compiler take care of chained assignments | |||
|---|---|---|---|
| |||
...has better indexing operators than C++: `obj[index] = rhs` can lower to one function call... | |||
February 14, 2023 Issues » [Issue 23676] Static foreach hangs compilation for some time | |||
|---|---|---|---|
| |||
...the static foreach to include a loop index; and then guard its body under a... | |||
February 12, 2023 Learn » Re: How does the function 'iota' get its name? | |||
|---|---|---|---|
| |||
Which took it from APL https://aplwiki.com/wiki/Index_Generator | |||
Copyright © 1999-2021 by the D Language Foundation