Skip to content

Commit

Permalink
Make LazyBuffer::it private
Browse files Browse the repository at this point in the history
  • Loading branch information
phimuemue committed Aug 18, 2023
1 parent 5979b27 commit 366d5f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lazy_buffer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::size_hint::{self, SizeHint};

#[derive(Debug, Clone)]
pub struct LazyBuffer<I: Iterator> {
pub it: Fuse<I>,
it: Fuse<I>,
buffer: Vec<I::Item>,
}

Expand Down

0 comments on commit 366d5f1

Please sign in to comment.