rmatrix_ks/
lib.rs

1#![warn(missing_docs)]
2#![allow(incomplete_features)]
3#![feature(doc_cfg)]
4#![feature(doc_auto_cfg)]
5#![feature(generic_const_exprs)]
6
7//! # rmatrix_ks
8//!
9//! [![github]](https://github.com/kands-code/rmatrix)
10//! [![crates-io]](https://crates.io/crates/rmatrix_ks)
11//! [![docs-rs]](https://docs.rs/rmatrix_ks)
12//!
13//! [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo=github
14//! [crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=555555&logo=rust
15//! [docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs
16//!
17//! ## Warnings
18//!
19//! <div class="warning">
20//!
21//! Unstable features used:
22//! - generic_const_exprs
23//!
24//! If you want to use this library, please use Rust Nightly
25//! and make sure to add `#![feature(generic_const_exprs)]`.
26//!
27//! </div>
28//!
29//! # Description
30//!
31//! This library primarily contains the definitions and implementations
32//! of matrix operations and numerical types,
33//! and is intended for personal use only.
34
35pub mod matrix;
36pub mod number;