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
//! # Laws Module
//!
//! Contains set theory law verification implementations.
//!
//! This module provides methods to verify standard set theory laws
//! such as De Morgan's laws, distributive laws, etc.

pub mod set_laws;

pub use set_laws::SetLaws;