| Crates.io | rstsr-dtype-traits |
| lib.rs | rstsr-dtype-traits |
| version | 0.5.1 |
| created_at | 2025-02-08 04:19:38.538467+00 |
| updated_at | 2025-09-01 08:08:54.446159+00 |
| description | An n-Dimension Rust Tensor Toolkit |
| homepage | |
| repository | https://github.com/RESTGroup/rstsr |
| max_upload_size | |
| id | 1547747 |
| size | 11,565 |
This trait tries to resolve some function clashes in crate num. For example:
abs function may have different behaviors for Signed and ComplexFloat,max and min function is defined by f64, trait Ord (where max or min is defined in standard library) is not implemented for f64.For those functions, it is more proper to define traits for each function specifically.
We only implements several types in standard library, or complex values. More types (from other crates) will be added in future or by issue request.