Free functions
| reversing | Reverses 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_result | Reverses 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…. |