Add double bracket and laplace operator (#570)

This commit is contained in:
Martin Haug 2023-04-04 15:47:40 +02:00 committed by GitHub
parent 570c528b3e
commit 8aca3ca3c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,7 @@ pub(crate) const SYM: &[(&str, Symbol)] = symbols! {
// Delimiters.
paren: [l: '(', r: ')', t: '', b: ''],
brace: [l: '{', r: '}', t: '', b: ''],
bracket: [l: '[', r: ']', t: '', b: ''],
bracket: [l: '[', l.double: '', r: ']', r.double: '', t: '', b: ''],
turtle: [l: '', r: '', t: '', b: ''],
bar: [v: '|', v.double: '', v.triple: '', v.broken: '¦', v.circle: '', h: ''],
fence: [l: '', l.double: '', r: '', r.double: '', dotted: ''],
@ -376,6 +376,7 @@ pub(crate) const SYM: &[(&str, Symbol)] = symbols! {
union: '',
vol: '',
],
laplace: '',
// Logic.
forall: '',