1use subtle::Choice;
4
5pub(crate) mod core;
6
7#[cfg(feature = "arithmetic")]
8pub(crate) mod nonzero;
9
10#[cfg(feature = "arithmetic")]
11use crate::ScalarArithmetic;
12
13#[cfg(feature = "arithmetic")]
15#[cfg_attr(docsrs, doc(cfg(feature = "arithmetic")))]
16pub type Scalar<C> = <C as ScalarArithmetic>::Scalar;
17
18#[cfg(feature = "bits")]
20#[cfg_attr(docsrs, doc(cfg(feature = "bits")))]
21pub type ScalarBits<C> = ff::FieldBits<<Scalar<C> as ff::PrimeFieldBits>::ReprBits>;
22
23pub trait IsHigh {
30 fn is_high(&self) -> Choice;
32}