Search

June 06, 2020
General »
...with 8 bit sized types (bool, byte, ubyte and char). With short it uses correctly...
June 05, 2020
General »
...std.datetime.systime;

ubyte [257]   LOOKUP_1; // 8-bit lookup table
ubyte [65537] LOOKUP_2...
June 02, 2020
General »
...Unqual!(ElementType!A)) || is(ElementType!A : const(ubyte))) && i
sInputRange!A && !isInfinite!A)
       1        1...
June 01, 2020
Issues »
...struct MMapRegion(T)
    alias data this;

    private ubyte[] mappedRegion;
    const(T)* data;
```

Before 2.086...
May 31, 2020
Issues »
...use something like `std.stdio.File.byChunk(ubyte[])` but I didn't find anything equivalent...
May 29, 2020
Learn »
...bVal);
				break;
			case VARENUM.VT_UI1:
				printf("ubyte: %d\n",
						cast(int) vtProp.bVal);
				break...
May 24, 2020
Learn »
...void handleConnections(TCPConnection connection) {
   ...
}

auto buf = new ubyte[amount];

connection.read(temp);

connection.write(buf...
May 21, 2020
Learn »
...that in your example if T is ubyte or some other trivial value type it...
May 20, 2020
Issues »
...std.typecons : Tuple, tuple;

enum RC5Command: Tuple!(ubyte, ubyte) {
       Standby = RC5Command(0,0)
}

unittest {
    RC5Command...
May 20, 2020
Learn »
...enum RC5Command: Tuple!(ubyte, ubyte) {
       Standby = tuple(to!ubyte(0x10), to!ubyte(0x0c)),
       …

I...
94 95 96 97 98 99 100 101 102 103 104 105
Next ›   Last »