This release introduces the `m_all()` method for `QrackSimulator` instances. `m_all()` collapses and returns a measurement result on all qubits in the simulator instance, low-to-high bit order as first-to-last allocation order. `m_all()` gives excellent execution speed for single samples, compared to `measure_shots()`.
If you are allocating more than 32 qubits, for special cases, `m_all()` will only report the value of the first 32, but the operation will collapse all qubits in the simulator via Z basis measurement, reliably. Following up the operation with additional measurements as necessary, in that case, will (almost) always preserve the overall performance boost, after the qubit register is collapsed.