acme_chains/core/crypto/
mod.rs

1/*
2   Appellation: mod
3   Context:
4   Creator: FL03 <jo3mccain@icloud.com>
5   Description:
6       ... Summary ...
7*/
8
9#[cfg(test)]
10mod tests {
11    #[test]
12    fn test() {
13        let f = |x: usize| x.pow(x.try_into().unwrap());
14        assert_eq!(f(2), 4)
15    }
16}