File.store32

Stores an integer as 32 bits in the file. Note: The value should lie in the interval $(D 0, 2^32 - 1). Any other value will overflow and wrap around. To store a signed integer, use store64, or convert it manually (see store16 for an example).

struct File
@nogc nothrow
void
store32
(
in long value
)

Meta