October 17, 2023 Genel » Re: Read Buffer | |||
|---|---|---|---|
| |||
...enum size = T.sizeof / ES;
auto readUnits(ref R data)
{
T result;
auto len = size... | |||
October 12, 2023 General » Finishing off C++ Header generation, a request for help | |||
|---|---|---|---|
| |||
...it doesn't work: So far I have fixed: * redefinition of `size_t` * appending of... | |||
October 11, 2023 General » Re: FYI: Be careful with imports when using public: | |||
|---|---|---|---|
| |||
...the member function. For example:
```d
public:
size_t length() {
import std.range.primitives : walkLength... | |||
October 10, 2023 General » Re: FYI: Be careful with imports when using public: | |||
|---|---|---|---|
| |||
...range/primitives.d(1795): `walkLength(Range)(Range range, const size_t upTo)` - Jonathan M Davis | |||
October 11, 2023 General » Re: FYI: Be careful with imports when using public: | |||
|---|---|---|---|
| |||
...import std.algorithm;// : splitter; size_t length() => str.length; size_t wordCount() => str.splitter.walkLength... | |||
October 09, 2023 Learn » allocated object address as high as 46th bit (i.e in the 131072 GB range) | |||
|---|---|---|---|
| |||
...stdio;
import core.bitop;
void main() {
const size_t ONE_G = 1 << 30;
char[][128... | |||
October 09, 2023 Learn » Re: how to assign multiple variables at once by unpacking array? | |||
|---|---|---|---|
| |||
...struct DATA(string str, T, size_t s)
{
enum title = str;
T[s] data;
}
void... | |||
October 06, 2023 Learn » Need help with 128bit integer ucent boolfilter | |||
|---|---|---|---|
| |||
...https://github.com/MartinNowak/bloom, only accept size_t as key. Is there some library... | |||
October 05, 2023 Learn » Re: The difference between T[] opIndex() and T[] opSlice() | |||
|---|---|---|---|
| |||
... }
arr[index] = value;
}
ref opIndex(size_t index)
{
scope(exit)
... | |||
October 05, 2023 Learn » Re: The difference between T[] opIndex() and T[] opSlice() | |||
|---|---|---|---|
| |||
...custom type.
struct S(T)
{
T[] arr;
T opIndex(size_t index) const
{
assert(index... | |||
Copyright © 1999-2021 by the D Language Foundation