Defile.readLE

A templated wrapper for the PHYSFS_readSLE/ULE* functions.

This method only accepts values that are of any integral type except byte and ubyte.

struct Defile
T
readLE
(
T
)
(
)
if (
isIntegral!T &&
!is(T == byte)
&&
!is(T == ubyte)
)

Return Value

Type: T

A value of type T in little endian byte order.

Throws

DefileException if an error occurs.

Meta