You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
890 B
Rust

pub const G_RPAREN: &'static [&str] = &["("];
pub const G_LPAREN: &'static [&str] = &[")"];
pub const G_RBRACKET: &'static [&str] = &["["];
pub const G_LBRACKET: &'static [&str] = &["]"];
pub const G_RBRACE: &'static [&str] = &["{"];
pub const G_LBRACE: &'static [&str] = &["}"];
pub const G_RBRACE_HIDDEN: &'static [&str] = &["{:"];
pub const G_LBRACE_HIDDEN: &'static [&str] = &[":}"];
pub const G_LANGLE: &'static [&str] = &["(:", "<<", "langle"];
pub const G_RANGLE: &'static [&str] = &[":)", ">>", "rangle"];
pub const G_LXPAR: &'static [&str] = &["{: x )"];
pub const G_RXPAR: &'static [&str] = &["( x :}"];
pub const G_ABS: &'static [&str] = &["abs"];
pub const G_FLOOR: &'static [&str] = &["floor"];
pub const G_CEIL: &'static [&str] = &["ceil"];
pub const G_NORM: &'static [&str] = &["norm"];
pub const G_MATRIX_SEP: &'static [&str] = &[","];
pub const T_LPAREN: char = ')';