1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//! Sigma types

pub mod stype;

/// AVL tree methods
pub mod savltree;
/// Box object type companion
pub mod sbox;
/// Collection object type companion
pub mod scoll;
pub mod scontext;
/// Function signature type
pub mod sfunc;
/// Global methods
pub mod sglobal;
/// GroupElement methods
pub mod sgroup_elem;
/// Header's methods
pub mod sheader;
/// Object method(property) signature type
pub mod smethod;
/// Option object type companion
pub mod soption;
/// PreHeader's methods
pub mod spreheader;
/// Tuple type
pub mod stuple;
/// Type companion for an object
pub mod stype_companion;
/// Type parameters for generic signatures
pub mod stype_param;
/// Types unification
pub mod type_unify;