Files
Matt Nadareski d614379cf5 Libraries
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.IO.Meta` builds the normal Nuget package that is used by all other projects and includes all namespaces. `SabreTools.IO` builds to `SabreTools.IO.Common` to avoid overwriting issues on publish.
2026-03-21 13:55:42 -04:00

858 B

SabreTools.Numerics

This library contains custom numeric types and related functionality.

Supported Numeric Types

Type Name Description
BothInt8 Both-endian Int8 value
BothUInt8 Both-endian UInt8 value
BothInt16 Both-endian Int16 value
BothUInt16 Both-endian UInt16 value
BothInt32 Both-endian Int32 value
BothUInt32 Both-endian UInt32 value
BothInt64 Both-endian Int64 value
BothUInt64 Both-endian UInt64 value
Int24 24-bit (3 byte) signed value
UInt24 24-bit (3 byte) unsigned value
Int48 48-bit (3 byte) signed value
UInt48 48-bit (3 byte) unsigned value

Both-endian or bi-endian numbers are represented by a little-endian value followed by a big-endian value, where both values should be the same number.