We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d74786 commit dc14300Copy full SHA for dc14300
rust/src/reactive/flat_fat.rs
@@ -2,7 +2,7 @@ use alga::general::AbstractMonoid;
2
use alga::general::Operator;
3
use std::collections::HashSet;
4
5
-pub trait FAT<Value, BinOp>
+pub(crate) trait FAT<Value, BinOp>
6
where
7
Value: AbstractMonoid<BinOp> + Clone,
8
BinOp: Operator,
@@ -33,7 +33,7 @@ where
33
fn suffix(&self, i: usize) -> Value;
34
}
35
36
-pub struct FlatFAT<Value, BinOp>
+pub(crate) struct FlatFAT<Value, BinOp>
37
38
39
0 commit comments