Docs.rs
fcoreutils-0.0.47
fcoreutils 0.0.47
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
aibrushcomputer
Dependencies
anyhow ^1
normal
base64-simd ^0.8
normal
blake2b_simd ^1
normal
clap ^4
normal
digest ^0.10
normal
libc ^0.2
normal
md-5 ^0.10
normal
memchr ^2
normal
memmap2 ^0.9
normal
mimalloc ^0.1
normal
rayon ^1
normal
regex ^1
normal
sha2 ^0.10
normal
thiserror ^2
normal
criterion ^0.8
dev
proptest ^1
dev
tempfile ^3
dev
md-5 ^0.10
normal
sha2 ^0.10
normal
ring ^0.17
normal
openssl ^0.10
normal
Versions
53.15%
of the crate is documented
Go to latest version
Platform
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Skip to main content
Module cut
coreutils_
rs
0.0.47
Module cut
Module Items
Structs
Enums
Functions
In crate coreutils_
rs
coreutils_rs
Module
cut
Copy item path
Source
Structs
§
CutConfig
Configuration for cut operations.
Range
A range specification like 1, 3-5, -3, 4-
Enums
§
CutMode
Cut operation mode
Functions
§
cut_
bytes
Cut bytes/chars from a line. Writes selected bytes to
out
.
cut_
fields
Cut fields from a line using a delimiter. Writes to
out
.
parse_
ranges
Parse a LIST specification like “1,3-5,7-” into ranges. Each range is 1-based. Returns sorted, merged ranges.
process_
cut_
data
Process a full data buffer (from mmap or read) with cut operation.
process_
cut_
reader
Process input from a reader (for stdin). Uses batch reading: reads large chunks (4MB), then processes them in batch using the fast mmap-based paths, avoiding per-line read_until syscall overhead.