assessment 1.0.0

A library that allows different types of assessments, to convert between them and to perform basic operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Domains in which assessments are represented.

pub use qualitative::{Qualitative, QualitativeError};
pub use quantitative::{Quantitative, QuantitativeError, QuantitativeLimit};

/// Quantitative struct and related implementations.
pub mod quantitative;

/// Qualitative struct and related implementations.
pub mod qualitative;

/// Domain factories
pub mod factories;

/// Base trait for domains.
pub trait Domain {}