Search

August 02, 2020
Issues »
...candidates are:
    // Array!ubyte.Array.opSliceAssign(ubyte value)
    // Array!ubyte.Array.opSliceAssign(ubyte value, ulong...
August 02, 2020
Learn »
...in my actual app
I have array ubyte [1000][3] Big which consists of research...
August 01, 2020
Learn »
...the desired type:

  ubyte[3][4] c = *cast(ubyte[3][4]*)(cast(ubyte[])[ 5, 5...
August 01, 2020
Learn »
ubyte[3][4] c = [ [5, 5, 5], [15, 15,15], [25, 25,25], [35, 35...
July 31, 2020
Learn »
...stdio: writeln;

void main()
{
    auto c = cast(ubyte[][]) [ [5, 5, 5], [15, 15,15], [25...
July 31, 2020
Learn »
...ubyte[3] [5, 5, 5]   ;  c[1] = ubyte[3] [15, 15,15] ;
c[2] = ubyte...
July 31, 2020
General »
...delegate(in ubyte[64]))` you can pass it `void saveHash(const scope ref ubyte[64...
July 31, 2020
Learn »
...img.c = ColFmt.RGB; img.pixels = new ubyte[H*W*3];   // c= color format: 1...
July 31, 2020
Learn »
...b; ubyte[] p;
}
void main()
{ S img= S(11,22) ;  img.p = new ubyte[5...
July 31, 2020
Learn »
...const ubyte *msg, int len) {
	ubyte *ptr = cast(ubyte*)msg;
	ubyte *usb_slave = cast(ubyte...
89 90 91 92 93 94 95 96 97 98 99 100
Next ›   Last »