Keyboard shortcuts

Press or to navigate between chapters

Press ? to show this help

Press Esc to hide this help

byte_appender

Fully qualified path: alexandria_data_structures::byte_appender

Free functions

reversingReverses the byte order of a value by repeatedly dividing and reconstructing. The step parameter MUST be a power of 2 (e.g., 2, 256, 65536)….
reversing_partial_resultReverses byte order with an existing partial result. The step parameter MUST be a power of 2 (e.g., 2, 256, 65536). Using a non-power-of-2 step will produce incorrect results and data corruption….

Traits

ByteAppenderSupportTraitGeneric support trait for appending signed and unsigned integers onto byte storage. There are two functions, one for each of big and little endian byte order due to…
ByteAppender