Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
HadrienG2 committed Oct 7, 2024
1 parent c0f5ad3 commit 613182d
Showing 1 changed file with 6 additions and 20 deletions.
26 changes: 6 additions & 20 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -756,16 +756,9 @@ mod core_iters {
unsafe impl<T> TrustedLowerBound for core::slice::RChunksExactMut<'_, T> {}
unsafe impl<T> TrustedLowerBound for core::slice::RChunksMut<'_, T> {}
unsafe impl<T, P> TrustedLowerBound for core::slice::RSplit<'_, T, P> where P: FnMut(&T) -> bool {}
unsafe impl<T, P> TrustedLowerBound for core::slice::RSplitMut<'_, T, P> where
P: FnMut(&T) -> bool
{
}
unsafe impl<T, P> TrustedLowerBound for core::slice::RSplitN<'_, T, P> where P: FnMut(&T) -> bool
{}
unsafe impl<T, P> TrustedLowerBound for core::slice::RSplitNMut<'_, T, P> where
P: FnMut(&T) -> bool
{
}
unsafe impl<T, P> TrustedLowerBound for core::slice::RSplitMut<'_, T, P> where P: FnMut(&T) -> bool {}
unsafe impl<T, P> TrustedLowerBound for core::slice::RSplitN<'_, T, P> where P: FnMut(&T) -> bool {}
unsafe impl<T, P> TrustedLowerBound for core::slice::RSplitNMut<'_, T, P> where P: FnMut(&T) -> bool {}
unsafe impl<T, P> TrustedLowerBound for core::slice::Split<'_, T, P> where P: FnMut(&T) -> bool {}
unsafe impl<T, P> TrustedLowerBound for core::slice::SplitInclusive<'_, T, P> where
P: FnMut(&T) -> bool
Expand All @@ -775,15 +768,9 @@ mod core_iters {
P: FnMut(&T) -> bool
{
}
unsafe impl<T, P> TrustedLowerBound for core::slice::SplitMut<'_, T, P> where
P: FnMut(&T) -> bool
{
}
unsafe impl<T, P> TrustedLowerBound for core::slice::SplitMut<'_, T, P> where P: FnMut(&T) -> bool {}
unsafe impl<T, P> TrustedLowerBound for core::slice::SplitN<'_, T, P> where P: FnMut(&T) -> bool {}
unsafe impl<T, P> TrustedLowerBound for core::slice::SplitNMut<'_, T, P> where
P: FnMut(&T) -> bool
{
}
unsafe impl<T, P> TrustedLowerBound for core::slice::SplitNMut<'_, T, P> where P: FnMut(&T) -> bool {}
unsafe impl<T> TrustedLowerBound for core::slice::Windows<'_, T> {}
unsafe impl TrustedLowerBound for core::str::Bytes<'_> {}
unsafe impl TrustedLowerBound for core::str::EscapeDebug<'_> {}
Expand Down Expand Up @@ -857,8 +844,7 @@ mod core_iters {
S: BuildHasher,
{
}
unsafe impl<T, S> TrustedLowerBound
for std::collections::hash_set::SymmetricDifference<'_, T, S>
unsafe impl<T, S> TrustedLowerBound for std::collections::hash_set::SymmetricDifference<'_, T, S>
where
T: Eq + Hash,
S: BuildHasher,
Expand Down

0 comments on commit 613182d

Please sign in to comment.