July 28, 2022 Learn » Re: Some user-made C functions and their D equivalents | |||
|---|---|---|---|
| |||
...to use unsigned integers or just use `size_t` which represents unsigned integer for 32... | |||
July 27, 2022 Learn » Re: Particular exceptions names | |||
|---|---|---|---|
| |||
...Exception {
this(string msg, string file = __FILE__, size_t line = __LINE__) {
super(msg, file, line... | |||
July 26, 2022 General » Problems related website | |||
|---|---|---|---|
| |||
...70)));
size_t[] source = [1, 2, 3, 3424234, 724398, 230947, 389492];
enum sbits = size_t... | |||
July 25, 2022 Issues » [Issue 23255] [REG 2.099] undefined reference to 'core.internal.switch.__switch_error()(string, size_t)' | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=23255 Puneet Goel <puneet@coverify.org> changed... | |||
July 23, 2022 Issues » [Issue 23255] [REG 2.099] undefined reference to 'core.internal.switch.__switch_error()(string, size_t)' | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=23255 --- Comment #5 from Iain Buclaw <ibuclaw... | |||
July 23, 2022 Issues » [Issue 23255] [REG 2.099] undefined reference to 'core.internal.switch.__switch_error()(string, size_t)' | |||
|---|---|---|---|
| |||
...is supposed to handle that, but isn't enough in all cases (which are real... | |||
July 23, 2022 Issues » [Issue 23255] [REG 2.099] undefined reference to 'core.internal.switch.__switch_error()(string, size_t)' | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=23255 --- Comment #3 from Puneet Goel <puneet... | |||
July 22, 2022 Learn » OK to do bit-packing with GC pointers? | |||
|---|---|---|---|
| |||
...size_t data;
public:
@safe:
@nogc:
nothrow:
this(C1 c1) @trusted {
data = cast(size_t... | |||
July 20, 2022 Learn » Re: Working with arrays (flatten, transpose, verfify rectangular) | |||
|---|---|---|---|
| |||
...size_t[] dummy;
return isRectangular(a, dummy);
}
bool isRectangular(A)(A a, out size_t... | |||
July 20, 2022 Learn » Re: Working with arrays (flatten, transpose, verfify rectangular) | |||
|---|---|---|---|
| |||
...Arrayish(T) {
T[] element;
size_t row, column;
this(size_t row, size_t column... | |||
Copyright © 1999-2021 by the D Language Foundation