Skip to content

Commit 297cf39

Browse files
authored
Merge pull request #6 from kenkoooo/fix/visibility
Add internal modules into lib.rs and fix visibility
2 parents 5809126 + 942c51f commit 297cf39

6 files changed

+11
-0
lines changed

src/internal_bit.rs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

src/internal_math.rs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

src/internal_queue.rs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

src/internal_scc.rs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

src/internal_type_traits.rs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

src/lib.rs

+6
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,10 @@ mod segtree;
1111
mod string;
1212
mod twosat;
1313

14+
pub(crate) mod internal_bit;
15+
pub(crate) mod internal_math;
16+
pub(crate) mod internal_queue;
17+
pub(crate) mod internal_scc;
18+
pub(crate) mod internal_type_traits;
19+
1420
pub use fenwicktree::FenwickTree;

0 commit comments

Comments
 (0)