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