README tuning

This commit is contained in:
Mikko Ahlroth 2024-02-13 20:58:05 +02:00
parent 2e9eb0851b
commit 559ade40bd

View file

@ -10,10 +10,13 @@ Some features:
- Builtin types for the most used ranges
- Create custom types for your own ranges in a type safe way
- Big integer arithmetic to avoid loss of precision
- Opt-in support for overflow and underflow for all ranges (with both a minimum and maximum limit)
- Opt-in support for overflow and underflow for all ranges (with both a minimum and
maximum limit)
- Partially limited ranges (only a minimum or maximum limit)
- Generic ranged integers for cases where ranges are not known at compile time
## Big integers
This library uses the [bigi](https://hex.pm/packages/bigi) library for handling big
integers. The API operates on big integers and only a few builtin types have helpers for
working with regular Gleam `Int`s. This is to ensure correctness on both targets by