conditionalSelect method

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

Conditional selection: returns b if choice is true, a otherwise.

Implementation

@override
PallasFp conditionalSelect(PallasFp a, PallasFp b, bool choice) {
  return PallasFp.conditionalSelect(a, b, choice);
}