August 02, 2020 Issues » [Issue 21099] New: std.container.array.Array should define opSliceAssign for multi-elements | |||
|---|---|---|---|
| |||
...candidates are:
// Array!ubyte.Array.opSliceAssign(ubyte value)
// Array!ubyte.Array.opSliceAssign(ubyte value, ulong... | |||
August 02, 2020 Learn » Re: 2-D array initialization | |||
|---|---|---|---|
| |||
...in my actual app I have array ubyte [1000][3] Big which consists of research... | |||
August 01, 2020 Learn » Re: 2-D array initialization | |||
|---|---|---|---|
| |||
...the desired type: ubyte[3][4] c = *cast(ubyte[3][4]*)(cast(ubyte[])[ 5, 5... | |||
August 01, 2020 Learn » Re: 2-D array initialization | |||
|---|---|---|---|
| |||
ubyte[3][4] c = [ [5, 5, 5], [15, 15,15], [25, 25,25], [35, 35... | |||
July 31, 2020 Learn » Re: 2-D array initialization | |||
|---|---|---|---|
| |||
...stdio: writeln;
void main()
{
auto c = cast(ubyte[][]) [ [5, 5, 5], [15, 15,15], [25... | |||
July 31, 2020 Learn » 2-D array initialization | |||
|---|---|---|---|
| |||
...ubyte[3] [5, 5, 5] ; c[1] = ubyte[3] [15, 15,15] ; c[2] = ubyte... | |||
July 31, 2020 General » `in` parameters made useful | |||
|---|---|---|---|
| |||
...delegate(in ubyte[64]))` you can pass it `void saveHash(const scope ref ubyte[64... | |||
July 31, 2020 Learn » Re: arrays in srucs | |||
|---|---|---|---|
| |||
...img.c = ColFmt.RGB; img.pixels = new ubyte[H*W*3]; // c= color format: 1... | |||
July 31, 2020 Learn » arrays in srucs | |||
|---|---|---|---|
| |||
...b; ubyte[] p;
}
void main()
{ S img= S(11,22) ; img.p = new ubyte[5... | |||
July 31, 2020 Learn » Re: D on lm32-CPU: string argument on stack instead of register | |||
|---|---|---|---|
| |||
...const ubyte *msg, int len) {
ubyte *ptr = cast(ubyte*)msg;
ubyte *usb_slave = cast(ubyte... | |||
Copyright © 1999-2021 by the D Language Foundation