3 个版本 (稳定版)
1.0.1 | 2024年3月14日 |
---|---|
0.1.0 | 2024年3月14日 |
#6 in #course
4KB
51 行
ju-tcs-tbop-24-lib-dcfk
POSIX head 和 tail 函数的实现。
函数
head
// Returns n first lines from given file.
pub fn head(path: &Path, n: usize) -> Vec<String>
tail
// Returns n last lines from given file.
pub fn tail(path: &Path, n: usize) -> Vec<String>