Function std::io::repeat

1.0.0 (const: unstable) · source ·
pub fn repeat(byte: u8) -> Repeat 
Expand description

创建 reader 的实例,该实例无限重复一个字节。

通过用给定的字节填充指定的缓冲区,从 reader 进行的所有读取将成功。

Examples

use std::io::{self, Read};

let mut buffer = [0; 3];
io::repeat(0b101).read_exact(&mut buffer).unwrap();
assert_eq!(buffer, [0b101, 0b101, 0b101]);
Run