f256 0.4.0

Octuple-precision floating-point arithmetic.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env just --justfile

release:
  cargo build --release

lint:
  cargo clippy

test-fast:
  cargo nextest run -r --no-default-features -E '!test(slowtest)'

test-slow:
  cargo nextest run -r --no-default-features -E 'test(slowtest)'

test-all:
  cargo hack test --release --feature-powerset --optional-deps num-traits