Skip to content

Commit

Permalink
Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
byeongkeunahn committed Oct 8, 2024
1 parent 418f79b commit 05afd47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion basm-std/src/collections/jagged_vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ pub struct RowIter<'a, T> {
idx: u32,
}

impl<'a, T> RowIter<'a, T> {
impl<T> RowIter<'_, T> {
pub fn id(&self) -> Option<usize> {
(self.idx != u32::MAX).then_some(self.idx as usize)
}
Expand Down

0 comments on commit 05afd47

Please sign in to comment.