rust-wc 0.3.5

A GNU/wc clone written in rust, which is faster when reading a large of big files
Documentation
1
2
3
4
5
6
7
8
9
use std::{collections::HashMap, path::PathBuf};

pub mod cli;
pub mod files;
pub mod wc_result;

pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>;
pub type Counts = Vec<usize>;
pub type PathWithContent = HashMap<PathBuf, String>;