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