#operator #ternary #catch

no-std op

a simple library for operator

4 releases

0.1.4 Oct 6, 2024
0.1.3 Feb 22, 2024
0.1.2 Jan 20, 2024
0.1.0 Jan 5, 2024

#2 in #catch

Download history 1/week @ 2024-07-01 16/week @ 2024-09-23 113/week @ 2024-09-30 53/week @ 2024-10-07 13/week @ 2024-10-14

195 downloads per month

Unlicense

6KB
101 lines

a simple library for operator

Example - Ternary

 use op::ternary;
 let n = ternary!(true => 0; 1);
 assert_eq!(n, 0);
 let n = ternary!(false => 0; 1);
 assert_eq!(n, 1);
 // or
 use op::Operator;

 assert_eq!(2, 2.if_else(true, 5));
 assert_eq!(5, 2.if_else(false, 5));

Example - catch

use op::catch;
type Error = &'static str;
let result1: Result<i32, &'static str> = Ok(1);
let result2: Result<i32, &'static str> = Ok(2);
let result3: Result<i32, &'static str> = Err("Error");
assert_eq!(Ok(3), catch!(Error -> Ok(result1? + result2?)));
assert_eq!(Err("Error"), catch!(Error -> Ok(result2? + result3?)));

let option1: Option<i32> = Some(1);
let option2: Option<i32> = Some(2);
let option3: Option<i32> = None;
assert_eq!(Some(3), catch!(Some(option1? + option2?)));
assert_eq!(None, catch!(Some(option2? + option3?)));

No runtime deps