Bytes
Bytes copied to clipboard
Swift Library for working with sequences of Bytes (aka [UInt8])
Would help immensely while testing
Low level enough to be good to implemented here, especially useful when comparing byte arrays that represent lexicographical keys. [Naive implementation](https://forums.swift.org/t/make-array-conditionally-conform-to-comparable/12966/3): ```swift extension Array: Comparable where Element: Comparable { public...
It can model the enum tests for the most part
This would add new methods that take a `stride` (distance between two entries) and `padding` (what to fill in the blanks with, default = `0x00`). This would add an error...
This would include big and little endian representations of `Float16`, `Float32`, `Float64`, and `Float80`.