Make cargodoc happy

This commit is contained in:
Jan Bujak 2023-04-11 11:48:58 +00:00
parent 1b6fee354d
commit 996b1e9077
No known key found for this signature in database
GPG key ID: 3B438F83D43341D4
2 changed files with 10 additions and 0 deletions

View file

@ -99,6 +99,7 @@ fn get_selected_backend() -> BackendKind {
BackendKind::Serial
}
#[allow(missing_docs)]
#[cfg(feature = "alloc")]
pub fn pippenger_optional_multiscalar_mul<I, J>(scalars: I, points: J) -> Option<EdwardsPoint>
where
@ -209,6 +210,7 @@ impl VartimePrecomputedStraus {
}
}
#[allow(missing_docs)]
#[cfg(feature = "alloc")]
pub fn straus_multiscalar_mul<I, J>(scalars: I, points: J) -> EdwardsPoint
where
@ -249,6 +251,7 @@ where
}
}
#[allow(missing_docs)]
#[cfg(feature = "alloc")]
pub fn straus_optional_multiscalar_mul<I, J>(scalars: I, points: J) -> Option<EdwardsPoint>
where

View file

@ -9,15 +9,22 @@
// - isis agora lovecruft <isis@patternsinthevoid.net>
// - Henry de Valence <hdevalence@hdevalence.ca>
//! Implementations of various multiplication algorithms for the SIMD backends.
#[allow(missing_docs)]
pub mod variable_base;
#[allow(missing_docs)]
pub mod vartime_double_base;
#[allow(missing_docs)]
#[cfg(feature = "alloc")]
pub mod straus;
#[allow(missing_docs)]
#[cfg(feature = "alloc")]
pub mod precomputed_straus;
#[allow(missing_docs)]
#[cfg(feature = "alloc")]
pub mod pippenger;