lib/std/Random/Isaac64.zig | 4 +- lib/std/Random/Pcg.zig | 4 +- lib/std/Random/RomuTrio.zig | 6 +- lib/std/Random/Sfc64.zig | 4 +- lib/std/Random/Xoroshiro128.zig | 4 +- lib/std/Random/Xoshiro256.zig | 4 +- lib/std/SemanticVersion.zig | 4 +- lib/std/Thread.zig | 4 +- lib/std/Thread/Condition.zig | 12 +- lib/std/Thread/Futex.zig | 8 +- lib/std/Thread/Mutex.zig | 6 +- lib/std/Thread/ResetEvent.zig | 6 +- lib/std/Thread/RwLock.zig | 4 +- lib/std/Thread/Semaphore.zig | 4 +- lib/std/array_list.zig | 111 ++++----- lib/std/buf_set.zig | 38 ++-- lib/std/compress/flate.zig | 10 +- lib/std/compress/flate/CircularBuffer.zig | 12 +- lib/std/compress/flate/Lookup.zig | 4 +- lib/std/compress/flate/SlidingWindow.zig | 4 +- lib/std/compress/flate/Token.zig | 8 +- lib/std/compress/flate/bit_reader.zig | 10 +- lib/std/compress/flate/block_writer.zig | 6 +- lib/std/compress/flate/huffman_decoder.zig | 16 +- lib/std/compress/flate/huffman_encoder.zig | 10 +- lib/std/compress/flate/inflate.zig | 10 +- lib/std/compress/lzma/test.zig | 16 +- lib/std/compress/lzma/vec2d.zig | 14 +- lib/std/compress/zstandard.zig | 4 +- lib/std/comptime_string_map.zig | 18 +- lib/std/crypto/25519/curve25519.zig | 2 +- lib/std/crypto/25519/ed25519.zig | 14 +- lib/std/crypto/25519/edwards25519.zig | 10 +- lib/std/crypto/25519/x25519.zig | 12 +- lib/std/crypto/chacha20.zig | 16 +- lib/std/crypto/ecdsa.zig | 12 +- lib/std/crypto/hmac.zig | 6 +- lib/std/crypto/md5.zig | 6 +- lib/std/crypto/poly1305.zig | 4 +- lib/std/crypto/utils.zig | 10 +- lib/std/enums.zig | 28 +-- lib/std/fmt/parse_float.zig | 20 +- lib/std/hash_map.zig | 46 ++-- lib/std/heap/arena_allocator.zig | 4 +- lib/std/heap/memory_pool.zig | 12 +- lib/std/io/Reader/test.zig | 66 +++--- lib/std/io/buffered_reader.zig | 4 +- lib/std/io/buffered_tee.zig | 10 +- lib/std/io/counting_reader.zig | 2 +- lib/std/io/counting_writer.zig | 2 +- lib/std/io/fixed_buffer_stream.zig | 8 +- lib/std/io/stream_source.zig | 6 +- lib/std/json/scanner_test.zig | 8 +- lib/std/math.zig | 2 +- lib/std/math/acos.zig | 10 +- lib/std/math/acosh.zig | 10 +- lib/std/math/asin.zig | 10 +- lib/std/math/asinh.zig | 10 +- lib/std/math/atan.zig | 10 +- lib/std/math/atan2.zig | 10 +- lib/std/math/atanh.zig | 10 +- lib/std/math/big/int_test.zig | 390 ++++++++++++++++---------------- lib/std/math/big/rational.zig | 34 +-- lib/std/math/cbrt.zig | 10 +- lib/std/math/complex.zig | 18 +- lib/std/math/complex/abs.zig | 2 +- lib/std/math/complex/acos.zig | 2 +- lib/std/math/complex/acosh.zig | 2 +- lib/std/math/complex/arg.zig | 2 +- lib/std/math/complex/asin.zig | 2 +- lib/std/math/complex/asinh.zig | 2 +- lib/std/math/complex/atan.zig | 4 +- lib/std/math/complex/atanh.zig | 2 +- lib/std/math/complex/conj.zig | 2 +- lib/std/math/complex/cos.zig | 2 +- lib/std/math/complex/cosh.zig | 4 +- lib/std/math/complex/exp.zig | 4 +- lib/std/math/complex/log.zig | 2 +- lib/std/math/complex/pow.zig | 2 +- lib/std/math/complex/proj.zig | 4 +- lib/std/math/complex/sin.zig | 2 +- lib/std/math/complex/sinh.zig | 4 +- lib/std/math/complex/sqrt.zig | 4 +- lib/std/math/complex/tan.zig | 2 +- lib/std/math/complex/tanh.zig | 4 +- lib/std/math/copysign.zig | 2 +- lib/std/math/cosh.zig | 10 +- lib/std/math/expm1.zig | 10 +- lib/std/math/float.zig | 6 +- lib/std/math/gamma.zig | 8 +- lib/std/math/hypot.zig | 10 +- lib/std/math/isfinite.zig | 2 +- lib/std/math/isinf.zig | 6 +- lib/std/math/isnan.zig | 4 +- lib/std/math/isnormal.zig | 2 +- lib/std/math/ldexp.zig | 2 +- lib/std/math/log.zig | 6 +- lib/std/math/log1p.zig | 10 +- lib/std/math/log2.zig | 2 +- lib/std/math/log_int.zig | 8 +- lib/std/math/modf.zig | 10 +- lib/std/math/nextafter.zig | 4 +- lib/std/math/pow.zig | 8 +- lib/std/math/powi.zig | 6 +- lib/std/math/scalbn.zig | 2 +- lib/std/math/signbit.zig | 2 +- lib/std/math/sinh.zig | 10 +- lib/std/math/sqrt.zig | 2 +- lib/std/math/tanh.zig | 10 +- lib/std/meta.zig | 52 ++--- lib/std/os/test.zig | 2 +- lib/std/priority_dequeue.zig | 62 ++--- lib/std/priority_queue.zig | 46 ++-- lib/std/segmented_list.zig | 4 +- lib/std/treap.zig | 2 +- lib/std/wasm.zig | 4 +- 116 files changed, 783 insertions(+), 782 deletions(-)