11 lines
No EOL
187 B
Rust
11 lines
No EOL
187 B
Rust
pub trait Container<T> {
|
|
fn read_container(&self) -> T;
|
|
}
|
|
|
|
pub trait Add<T = Self> {
|
|
fn add(&mut self, other: &mut T) -> &mut T;
|
|
}
|
|
|
|
pub mod t_array;
|
|
pub mod f_string;
|
|
pub mod fnv; |