sqrt method
Computes the square root of the element.
Implementation
@override
FieldSqrtResult<VestaFq> sqrt() {
return PastaUtils.sqrtTonelliShanks(
f: this,
fPowTm1d2: powByTMinus1Over2(),
rootOfUnity: VestaFq.rootOfUnity(),
one: VestaFq.one(),
conditionalSelect: conditionalSelect,
);
}