We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1824fd9 + c479def commit ac1b87eCopy full SHA for ac1b87e
src/lib.rs
@@ -115,7 +115,7 @@ impl<Tuple: Ord> Relation<Tuple> {
115
}
116
117
/// Creates a `Relation` using the `leapjoin` logic;
118
- /// see [`Variable::leapjoin`]
+ /// see [`Variable::from_leapjoin`]
119
pub fn from_leapjoin<'leap, SourceTuple: Ord, Val: Ord + 'leap>(
120
source: &Relation<SourceTuple>,
121
leapers: impl Leapers<'leap, SourceTuple, Val>,
src/treefrog.rs
@@ -439,8 +439,8 @@ pub(crate) mod extend_anti {
439
440
441
442
- impl<'leap, Key: Ord, Val: Ord + 'leap, Tuple: Ord, Func: Fn(&Tuple) -> Key>
443
- Leaper<'leap, Tuple, Val> for ExtendAnti<'leap, Key, Val, Tuple, Func>
+ impl<'leap, Key: Ord, Val: Ord + 'leap, Tuple: Ord, Func> Leaper<'leap, Tuple, Val>
+ for ExtendAnti<'leap, Key, Val, Tuple, Func>
444
where
445
Key: Ord + 'leap,
446
Val: Ord + 'leap,
@@ -589,8 +589,8 @@ pub(crate) mod filter_anti {
589
590
591
592
- impl<'leap, Key: Ord, Val: Ord + 'leap, Val2, Tuple: Ord, Func: Fn(&Tuple) -> (Key, Val)>
593
- Leaper<'leap, Tuple, Val2> for FilterAnti<'leap, Key, Val, Tuple, Func>
+ impl<'leap, Key: Ord, Val: Ord + 'leap, Val2, Tuple: Ord, Func> Leaper<'leap, Tuple, Val2>
+ for FilterAnti<'leap, Key, Val, Tuple, Func>
594
595
596
0 commit comments