Search

July 09, 2020
Learn »
...n", i);
    ulong address = cast(ulong)&i;
    ubyte* p = cast(ubyte*)address;
    writeln(*p);
}

Matheus.
July 08, 2020
Learn »
...d\n", i); // read a number
    ubyte* p = cast(ubyte*) i; // convert it to a...
July 07, 2020
Learn »
...Pattern match `ref T[]` to `ubyte[]` => T is ubyte => Check ubyte for T : T[], no...
July 07, 2020
Learn »
...slice or not.

So

ubyte[3] ar = [ 1, 2, 3 ];
ubyte[] arSlice = ar;

overloadedFunction(arSlice...
July 05, 2020
Issues »
...pro.mathias.lang@gmail.com

```
struct Transaction
{
    ubyte[] hash;
}

struct Block
{
    Transaction[] txs;
}

void main...
July 01, 2020
Issues »
...segfaults dmd 2.092.0:

struct S {
  ubyte[1024 * 1024] a = void;
}

void main() {
  version...
June 29, 2020
Learn »
...need for that symbol. chars in D are initialized with 0xFF, unlike byte and ubyte.
June 28, 2020
Genel »
...basit bir sınıf oldu:

```
class BellekDeposu : Depo {
 ubyte[] baytlar;
 long konum;  // <-- Dosyanın neresinde olduğumuzu belirler...
June 28, 2020
Announce »
...assume it's text (char[] instead of ubyte[])
   .byLineRange) // convert to a line-based range...
June 26, 2020
Issues »
...to both
fun(ubyte) and fun(ulong), then partial ordering picks fun(ubyte).


Correct, because...
92 93 94 95 96 97 98 99 100 101 102 103
Next ›   Last »