├── .gitignore ├── .vscode └── settings.json ├── Cargo.toml ├── LICENSE ├── README.md ├── benches └── benches.rs └── src ├── bitwise_ops.rs ├── comparison_ops.rs ├── formatting_ops.rs ├── io.rs ├── lib.rs ├── math_ops.rs ├── neg_ops.rs ├── shift_ops.rs ├── shorthand_types.rs └── specific_endian.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | .test.bin 5 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexlunae/simple-endian-rs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexlunae/simple-endian-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexlunae/simple-endian-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexlunae/simple-endian-rs/HEAD/README.md -------------------------------------------------------------------------------- /benches/benches.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexlunae/simple-endian-rs/HEAD/benches/benches.rs -------------------------------------------------------------------------------- /src/bitwise_ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexlunae/simple-endian-rs/HEAD/src/bitwise_ops.rs -------------------------------------------------------------------------------- /src/comparison_ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexlunae/simple-endian-rs/HEAD/src/comparison_ops.rs -------------------------------------------------------------------------------- /src/formatting_ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexlunae/simple-endian-rs/HEAD/src/formatting_ops.rs -------------------------------------------------------------------------------- /src/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexlunae/simple-endian-rs/HEAD/src/io.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexlunae/simple-endian-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/math_ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexlunae/simple-endian-rs/HEAD/src/math_ops.rs -------------------------------------------------------------------------------- /src/neg_ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexlunae/simple-endian-rs/HEAD/src/neg_ops.rs -------------------------------------------------------------------------------- /src/shift_ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexlunae/simple-endian-rs/HEAD/src/shift_ops.rs -------------------------------------------------------------------------------- /src/shorthand_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexlunae/simple-endian-rs/HEAD/src/shorthand_types.rs -------------------------------------------------------------------------------- /src/specific_endian.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexlunae/simple-endian-rs/HEAD/src/specific_endian.rs --------------------------------------------------------------------------------