January 19, 2022 Learn » Re: automate tuple creation | |||
|---|---|---|---|
| |||
...can't you just use a loop to initialize it? uint[][] createBoolMatrix(size_t n... | |||
January 19, 2022 Learn » Re: number ranges | |||
|---|---|---|---|
| |||
...last_;
}
}
size_t length() inout {
return last_ - first_ + 1 - empty_;
}
}
auto inclusiveRange(T)(in T... | |||
January 18, 2022 Learn » Re: shared defaultlib with dmd | |||
|---|---|---|---|
| |||
...file size is small doesn't mean there aren't any large intermediate files. T... | |||
January 18, 2022 Learn » shared defaultlib with dmd | |||
|---|---|---|---|
| |||
...in simple example) the size of my compiled...drive. But I can't do this with... | |||
January 18, 2022 General » Versionable default parameters | |||
|---|---|---|---|
| |||
...parameter tuple.
void locusFunc(string file = __FILE__, size_t line = __LINE__,
string func = __FUNCTION__);
// Bind... | |||
January 17, 2022 General » Re: bottom type as parameter or local variable, does that make sense? | |||
|---|---|---|---|
| |||
...subtype of any `T*`. Hence, `noreturn.sizeof` should be at least `size_t.max` or... | |||
January 18, 2022 General » Re: TypeInfo in struct ABI | |||
|---|---|---|---|
| |||
...by something like typeid(T). So you should...auto blkInf = GC.qalloc(size, flags, typeid(Type... | |||
January 17, 2022 Learn » Re: Dynamic array or not | |||
|---|---|---|---|
| |||
...block which specified a size, and if it...Not sure, it wouldn't be unreal for... | |||
January 16, 2022 General » Re: bottom type as parameter or local variable, does that make sense? | |||
|---|---|---|---|
| |||
...its size), because it can't exist. So IMO it should be impossible. T -- Век... | |||
January 17, 2022 Learn » Re: Dynamic array ot not | |||
|---|---|---|---|
| |||
...a dynamic array and its copy below: size_t[] arr = [1, 2, 3, 4, 5... | |||
Copyright © 1999-2021 by the D Language Foundation