iif 1.0.0

Returns one of two parts, depending on the evaluation of an expression.
Documentation
1
2
3
4
5
6
7
8
9
10
# iif

Returns one of two parts, depending on the evaluation of an expression.

## Example

```rust
let active = true;
let active_text = iif!(active, "Active", "Inactive")
```