tfhe-rs 0.0.0

For the actual tfhe crate check-out https://crates.io/crates/tfhe
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! For the actual tfhe crate docs.rs documentation check https://docs.rs/tfhe/latest/tfhe/.

pub fn placeholder() {}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn it_works() {
        let result = placeholder();
        assert_eq!(result, ());
    }
}