conditionalSelect method
Conditional selection: returns b if choice is true, a otherwise.
Implementation
@override
VestaNativeFq conditionalSelect(
VestaNativeFq a,
VestaNativeFq b,
bool choice,
) {
return choice ? b : a;
}
Conditional selection: returns b if choice is true, a otherwise.
@override
VestaNativeFq conditionalSelect(
VestaNativeFq a,
VestaNativeFq b,
bool choice,
) {
return choice ? b : a;
}