Trait snarkvm_console_types_string::Ternary 
source · [−]pub trait Ternary {
    type Boolean;
    type Output;
    fn ternary(
        condition: &Self::Boolean,
        first: &Self,
        second: &Self
    ) -> Self::Output;
}Expand description
Trait for ternary operations.