VestaNativeFq.conditionalSelect constructor

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

Implementation

@override
factory VestaNativeFq.conditionalSelect(
  VestaNativeFq a,
  VestaNativeFq b,
  bool choice,
) {
  return choice ? b : a;
}