Search

March 01, 2023
Learn »
...null;
// because `value` is null, the first index also lies at null.
assert(&value[0...
March 01, 2023
Learn »
...org/releases/X11R7.7/doc/libxcb/tutorial/index.html) tutorial to learn XCB and I...
February 26, 2023
General »
...255 : 0; -->

xor     EBX,EBX       // 1 foreach index counter set to zero
mov     RAX,-8...
February 26, 2023
General »
...get!ulong;
        size_t parent_idx = 0; // index in parent_stack to which this item...
February 23, 2023
General »
...C)(const scope C[] input, size_t index) {return 0;}
    bool isGraphical()(dchar c) { return...
February 23, 2023
Issues »
...9')
                        index = index * 10 + (ubyte(format[i++]) - ubyte('0'));
                    if (!isQ)
                        result ~= args[index];
                    else...
February 22, 2023
General »
...if (index >= 0)
            {
                memmove(fds.ptr + index, // dest
                        fds.ptr + index + 1, // src
                        (_count - index...
February 22, 2023
Issues »
...has better indexing operators
than C++:
`obj[index] = rhs` can lower to one function call...
February 14, 2023
Issues »
...the static foreach to include a loop index; and then guard its body under a...
February 12, 2023
Learn »
Which took it from APL
https://aplwiki.com/wiki/Index_Generator
27 28 29 30 31 32 33 34 35 36 37 38
Next ›   Last »