ternary-rs

Crates.ioternary-rs
lib.rsternary-rs
version1.0.0
sourcesrc
created_at2021-01-15 12:53:32.947453
updated_at2021-01-15 12:53:32.947453
descriptionA Rust library for emulating the ternary operator from C/C++ (among other languages)
homepage
repositoryhttps://gitlab.com/adamson.benjamin/ternary-rs
max_upload_size
id342372
size15,178
Benjamin Adamson (bjadamson)

documentation

README

ternary-rs

A Rust library for emulating the ternary operator from C/C++ (among other languages)

Exposes two macros that do the same thing:

  • Choose between two macros ifelse! and ternary
ifelse!(condition, true value, false value)
ternary!(condition, true value, false value)

Usage

Add this to your Cargo.toml:

[dependencies]
ternary-rs = "1.0.0"

Example

let cond = true;
let result = if_else!(cond, 1, 0);
assert_eq!(1, result);
assert_ne!(0, result);

// If you find if_else!() unclear, you can use the ternary!() macro and be explicit instead!
let result = ternary!(cond, 1, 0);
assert_eq!(1, result);
assert_ne!(0, result);

License

ternary-rs is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE and LICENSE-MIT for details.

Commit count: 4

cargo fmt