op 0.1.2

a simple library for operator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
a simple library for operator


# Example

 ```rust
 use op::ternary;
 let n = ternary!(true => 0; 1);
 assert_eq!(n, 0);
 let n = ternary!(false => 0; 1);
 assert_eq!(n, 1);
 ````