Skip to content

Commit

Permalink
fix(hlapi): pub use HlCompressible,HlExpandable
Browse files Browse the repository at this point in the history
Pub re-export the `HlCompressible` and `HlExpandable`
traits, as users may need them to write generic code
that manipulates CompressedCiphertextList/Builder
  • Loading branch information
tmontaigu committed Oct 2, 2024
1 parent cb9dac6 commit 375481c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tfhe/src/high_level_api/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@ pub use compact_list::ProvenCompactCiphertextList;
pub use compact_list::{
CompactCiphertextList, CompactCiphertextListBuilder, CompactCiphertextListExpander,
};
pub use compressed_ciphertext_list::{CompressedCiphertextList, CompressedCiphertextListBuilder};
pub use compressed_ciphertext_list::{
CompressedCiphertextList, CompressedCiphertextListBuilder, HlCompressible, HlExpandable,
};

pub use tag::Tag;
pub use traits::FheId;
Expand Down

0 comments on commit 375481c

Please sign in to comment.