Skip to content

Releases: npars/arbintrary

0.4.0: Add from trait for primitives

29 Jun 22:49
Compare
Choose a tag to compare
- Add from trait for primitive conversions
- Add try_from trait for primitive conversions

0.3.0: Implement try_from trait

28 Jun 22:16
Compare
Choose a tag to compare
- Add support for converting between arbitrary integer values using
  the try_from function
- Set default rustfmt config

0.2.1: Make From macros more generic

21 Jun 23:04
Compare
Choose a tag to compare
- Implement a "basewise" macro for From trait that reduces number of
  trait implementations required

0.2.0: Implement From trait

20 Jun 16:29
Compare
Choose a tag to compare
- Implement the From trait for uint to uint and int to int conversions

0.1.2

19 Jun 23:15
Compare
Choose a tag to compare
Fix bases that match existing ints

- Fix uint and int values that aligned with existing primitive integers,
  such as uint<8>, these values were never working correctly

0.1.1

18 Jun 23:15
Compare
Choose a tag to compare

Add support for lossy conversions via the as_ function.

0.1.0

17 Jun 22:41
Compare
Choose a tag to compare
Implement lib based on uX crate

- Port uX crate to generic const
- Add CI
- Leave out From/Into conversion logic for the time being