1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
    Appellation: props <module>
    Contrib: FL03 <jo3mccain@icloud.com>
*/
//! # Properties
//!
//!

/// Associative Property describes an operation that is invariant under the grouping of its operands.
pub trait Associative {}

/// Commutative Property describes an operation that is invariant under the exchange of its operands.
pub trait Commutative {}

#[cfg(test)]
mod tests {

    #[test]
    fn test_associative() {
        assert!(true);
    }

    #[test]
    fn test_communitative() {
        assert!(true);
    }
}