common_traits

This is a collection of traits and dependancies I often use to write generic code for both data-structures and scientific computing.

Everything is experimental and I'll change them to my needs :)

The point of making this crate public is to be able to discuss this as it covers many core missings from Rust.

The crate contains the following traits: - [Number] to abstract over all the numerical traits. - [Float] for floating point numbers. - [Word] for unsigned integers. - [SignedWord] for signed integers. - [Atomic] for Atomic values. - [AtomicNumber] for Atomic numbers. - [NonZero] for the non zero variants of numbers.

These are similar to the ones from num-traits but they are more connected which allows to write generic codes with less bounds.

The numerical traits dependancy chains is this:

This crate adds emulated atomic floats through fetch_update for the following types: - [f64] as [AtomicF64] - [f32] as [AtomicF32] - [half::f16] as [AtomicF16] - [half::bf16] as [AtomicBF16]

The crate also contains a couple of extra traits: - [Rng] for a generic random number generator. - [Splat] to broadcast a smaller type on a larger type, mainly used for SWAR. - [SelectInWord] to find the position of the i-th 1 or 0 in word. - [FastRange] for faster div, mod, and range operations. - [Sequence], [SequenceMut], and [SequenceGrowable] to abstract over slices and other sequence like types.

Traits for conversion between types are also provided: - [UpcastableInto] and [UpcastableFrom] to cast primitive values which are known to don't lose precision.