conditionalSelect method

  1. @override
VestaFq conditionalSelect(
  1. VestaFq a,
  2. VestaFq b,
  3. bool choice
)
override

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);
}