8 lines
152 B
Rust
8 lines
152 B
Rust
|
use estring::SepVec;
|
||
|
|
||
|
const COMMA: char = ',';
|
||
|
const SEMI: char = ';';
|
||
|
|
||
|
pub type CommaVec<T> = SepVec<T, COMMA>;
|
||
|
pub type SemiVec<T> = SepVec<T, SEMI>;
|