diff --git a/src/bigint.rs b/src/bigint.rs index b4f84b9e..32225eb2 100644 --- a/src/bigint.rs +++ b/src/bigint.rs @@ -34,8 +34,11 @@ mod shift; /// A `Sign` is a [`BigInt`]'s composing element. #[derive(PartialEq, PartialOrd, Eq, Ord, Copy, Clone, Debug, Hash)] pub enum Sign { + /// The value of the [`BigInt`] is equal to its absolute value multiplied by `-1`. Minus, + /// The value of the [`BigInt`] is equal to its absolute value multiplied by `0`. NoSign, + /// The value of the [`BigInt`] is equal to its absolute value multiplied by `1`. Plus, }