Skip to content

Commit 1b9a013

Browse files
committed
specialize Bytes on StdinLock<'_> by using the underlying BufReader
1 parent bf2637f commit 1b9a013

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

library/std/src/io/stdio.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ use crate::io::prelude::*;
88
use crate::cell::{Cell, RefCell};
99
use crate::fmt;
1010
use crate::fs::File;
11-
use crate::io::{self, BorrowedCursor, BufReader, IoSlice, IoSliceMut, LineWriter, Lines};
11+
use crate::io::{
12+
self, BorrowedCursor, BufReader, IoSlice, IoSliceMut, LineWriter, Lines, SpecReadByte,
13+
};
1214
use crate::sync::atomic::{AtomicBool, Ordering};
1315
use crate::sync::{Arc, Mutex, MutexGuard, OnceLock, ReentrantMutex, ReentrantMutexGuard};
1416
use crate::sys::stdio;
@@ -483,6 +485,13 @@ impl Read for StdinLock<'_> {
483485
}
484486
}
485487

488+
impl SpecReadByte for StdinLock<'_> {
489+
#[inline]
490+
fn spec_read_byte(&mut self) -> Option<io::Result<u8>> {
491+
BufReader::spec_read_byte(&mut *self.inner)
492+
}
493+
}
494+
486495
#[stable(feature = "rust1", since = "1.0.0")]
487496
impl BufRead for StdinLock<'_> {
488497
fn fill_buf(&mut self) -> io::Result<&[u8]> {

0 commit comments

Comments
 (0)