consume - multiple declarations
- Function consume
- Function consume
- Function consume
- Function consume
- Function consume
- Function consume
- Function consume
- Function consume
- Function consume
- Function consume
- Function consume
Function consume
Returns N number of bytes from the packet and advances the array
Prototype
ubyte[] consume()(
ref ubyte[] packet,
size_t N
) pure nothrow;
Function consume
Prototype
T consume(T, ubyte N)(
ref ubyte[] packet
) pure nothrow
if (isFloatingPoint!T);
Function consume
Prototype
T consume(T, ubyte N)(
ref ubyte[] packet
) pure nothrow
if (isIntegral!T);
Function consume
Prototype
DateTime consume(T, ubyte N)(
ref ubyte[] packet
) pure;
Function consume
Parse Length Coded String
Prototype
string consume(T)(
ref ubyte[] packet
) pure;
See Also
http://forge.mysql.com/wiki/MySQL_Internals_ClientServer_Protocol#Elements
Function consume
Prototype
Date consume(T, ubyte N)(
ref ubyte[] packet
) pure;
Function consume
Prototype
TimeOfDay consume(T, ubyte N)(
ref ubyte[] packet
) pure;
Function consume
Prototype
T consume(T)(
ref ubyte[] packet,
int n
) pure nothrow
if (isIntegral!T);
Function consume
Prototype
string consume(T)(
ref ubyte[] packet,
size_t N
) pure;
Function consume
Prototype
string consume(T, ubyte N)(
ref ubyte[] packet
) pure;
Function consume
Prototype
T consume(T)(
MySQLSocket conn
) pure;