1use int_interval::*;
2
3mod int_co_set;
4
5pub use int_co_set::IntCOSet;
6
7pub type I8COSet = IntCOSet<I8CO>;
8pub type I16COSet = IntCOSet<I16CO>;
9pub type I32COSet = IntCOSet<I32CO>;
10pub type I64COSet = IntCOSet<I64CO>;
11pub type I128COSet = IntCOSet<I128CO>;
12pub type IsizeCOSet = IntCOSet<IsizeCO>;
13
14pub type U8COSet = IntCOSet<U8CO>;
15pub type U16COSet = IntCOSet<U16CO>;
16pub type U32COSet = IntCOSet<U32CO>;
17pub type U64COSet = IntCOSet<U64CO>;
18pub type U128COSet = IntCOSet<U128CO>;
19pub type UsizeCOSet = IntCOSet<UsizeCO>;