libpt_math/
lib.rs

1//! # General Mathmatics functionalities
2//!
3//! This crate is part of [`pt`](../libpt/index.html), but can also be used as a standalone
4//! module.
5//!
6//! This module is currently empty, but will contain many math functionalities in a future version.
7
8//// ATTRIBUTES ////////////////////////////////////////////////////////////////////////////////////
9// we want docs
10#![warn(missing_docs)]
11#![warn(rustdoc::missing_crate_level_docs)]
12// we want Debug everywhere.
13#![warn(missing_debug_implementations)]
14// enable clippy's extra lints, the pedantic version
15#![warn(clippy::pedantic)]
16
17//// IMPORTS ///////////////////////////////////////////////////////////////////////////////////////
18pub mod ccc;
19
20//// TYPES /////////////////////////////////////////////////////////////////////////////////////////
21
22//// CONSTANTS /////////////////////////////////////////////////////////////////////////////////////
23
24//// STATICS ///////////////////////////////////////////////////////////////////////////////////////
25
26//// MACROS ////////////////////////////////////////////////////////////////////////////////////////
27
28//// ENUMS /////////////////////////////////////////////////////////////////////////////////////////
29
30//// STRUCTS ///////////////////////////////////////////////////////////////////////////////////////
31
32//// IMPLEMENTATION ////////////////////////////////////////////////////////////////////////////////
33
34//// PUBLIC FUNCTIONS //////////////////////////////////////////////////////////////////////////////
35
36//// PRIVATE FUNCTIONS /////////////////////////////////////////////////////////////////////////////
37
38////////////////////////////////////////////////////////////////////////////////////////////////////