set_theory 1.0.0

A comprehensive mathematical set theory library implementing standard set operations, multisets, and set laws verification
Documentation
1
2
3
4
5
6
7
8
9
10
//! # Traits Module
//!
//! Core traits defining the interface for mathematical set operations.
//!
//! This module provides the foundational traits that all set implementations
//! must adhere to, ensuring consistency across different set types.

pub mod math_set;

pub use math_set::MathSet;