Skip to content

Commit

Permalink
allow BufReader::peek to be called on unsized types
Browse files Browse the repository at this point in the history
  • Loading branch information
lolbinarycat committed Aug 28, 2024
1 parent 600edc9 commit fc28478
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion library/std/src/io/buffered/bufreader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,10 @@ impl<R: Read> BufReader<R> {
/// assert_eq!(&s, "hello");
/// ```
#[unstable(feature = "bufreader_peek", issue = "128405")]
pub fn peek(&mut self, n: usize) -> io::Result<&[u8]> {
pub fn peek(&mut self, n: usize) -> io::Result<&[u8]>
where
R: ?Sized,
{
assert!(n <= self.capacity());
while n > self.buf.buffer().len() {
if self.buf.pos() > 0 {
Expand Down

0 comments on commit fc28478

Please sign in to comment.