{-# LANGUAGE OverloadedStrings #-}
module Text.TeXMath.Readers.MathML.MMLDict (getMathMLOperator, operators) where
import Text.TeXMath.Types
import qualified Data.Map as M
import qualified Data.Text as T
import Data.Monoid (First(..), mconcat)
dict :: M.Map (T.Text, FormType) Operator
dict :: Map (Text, FormType) Operator
dict = [((Text, FormType), Operator)] -> Map (Text, FormType) Operator
forall k a. Ord k => [(k, a)] -> Map k a
M.fromList ((Operator -> ((Text, FormType), Operator))
-> [Operator] -> [((Text, FormType), Operator)]
forall a b. (a -> b) -> [a] -> [b]
map (\o :: Operator
o -> ((Operator -> Text
oper Operator
o, Operator -> FormType
form Operator
o), Operator
o)) [Operator]
operators)
getMathMLOperator :: T.Text -> FormType -> Maybe Operator
getMathMLOperator :: Text -> FormType -> Maybe Operator
getMathMLOperator s :: Text
s p :: FormType
p =
First Operator -> Maybe Operator
forall a. First a -> Maybe a
getFirst (First Operator -> Maybe Operator)
-> First Operator -> Maybe Operator
forall a b. (a -> b) -> a -> b
$ [First Operator] -> First Operator
forall a. Monoid a => [a] -> a
mconcat ([First Operator] -> First Operator)
-> [First Operator] -> First Operator
forall a b. (a -> b) -> a -> b
$ ((FormType -> First Operator) -> [FormType] -> [First Operator]
forall a b. (a -> b) -> [a] -> [b]
map (\x :: FormType
x -> Maybe Operator -> First Operator
forall a. Maybe a -> First a
First (Maybe Operator -> First Operator)
-> Maybe Operator -> First Operator
forall a b. (a -> b) -> a -> b
$ (Text, FormType) -> Map (Text, FormType) Operator -> Maybe Operator
forall k a. Ord k => k -> Map k a -> Maybe a
M.lookup (Text
s, FormType
x) Map (Text, FormType) Operator
dict) [FormType]
lookupOrder)
where
lookupOrder :: [FormType]
lookupOrder = [FormType
p, FormType
FInfix, FormType
FPostfix, FormType
FPrefix]
operators :: [Operator]
operators :: [Operator]
operators =
[ Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "!", description :: Text
description = "EXCLAMATION MARK", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 810, lspace :: Int
lspace = 1, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "!!", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: !!", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 810, lspace :: Int
lspace = 1, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "!=", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: !=", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\"", description :: Text
description = "QUOTATION MARK", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "%", description :: Text
description = "PERCENT SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 640, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "&", description :: Text
description = "AMPERSAND", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "&&", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: &&", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 200, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "'", description :: Text
description = "APOSTROPHE", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "(", description :: Text
description = "LEFT PARENTHESIS", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = ")", description :: Text
description = "RIGHT PARENTHESIS", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "*", description :: Text
description = "ASTERISK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 390, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "**", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: **", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 780, lspace :: Int
lspace = 1, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "*=", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: *=", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "+", description :: Text
description = "PLUS SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 275, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "+", description :: Text
description = "PLUS SIGN", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 275, lspace :: Int
lspace = 0, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "++", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: ++", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "+=", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: +=", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = ",", description :: Text
description = "COMMA", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 40, lspace :: Int
lspace = 0, rspace :: Int
rspace = 3, properties :: [Text]
properties = ["separator"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "-", description :: Text
description = "HYPHEN-MINUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 275, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "-", description :: Text
description = "HYPHEN-MINUS", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 275, lspace :: Int
lspace = 0, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "--", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: --", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "-=", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: -=", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "->", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: ->", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 90, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = ".", description :: Text
description = "FULL STOP", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 390, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "..", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: ..", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 100, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "...", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: ...", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 100, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "/", description :: Text
description = "SOLIDUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 660, lspace :: Int
lspace = 1, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "//", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: //", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 820, lspace :: Int
lspace = 1, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "/=", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: /=", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = ":", description :: Text
description = "COLON", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 100, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = ":=", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: :=", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = ";", description :: Text
description = "SEMICOLON", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 30, lspace :: Int
lspace = 0, rspace :: Int
rspace = 3, properties :: [Text]
properties = ["separator"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "<", description :: Text
description = "LESS-THAN SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 245, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "<=", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: <=", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 241, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "<>", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: <>", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 780, lspace :: Int
lspace = 1, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "=", description :: Text
description = "EQUALS SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "==", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: ==", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = ">", description :: Text
description = "GREATER-THAN SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 243, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = ">=", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: >=", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 243, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "?", description :: Text
description = "QUESTION MARK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 835, lspace :: Int
lspace = 1, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "@", description :: Text
description = "COMMERCIAL AT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 825, lspace :: Int
lspace = 1, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "[", description :: Text
description = "LEFT SQUARE BRACKET", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\\", description :: Text
description = "REVERSE SOLIDUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 650, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "]", description :: Text
description = "RIGHT SQUARE BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "^", description :: Text
description = "CIRCUMFLEX ACCENT", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "^", description :: Text
description = "CIRCUMFLEX ACCENT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 780, lspace :: Int
lspace = 1, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "_", description :: Text
description = "LOW LINE", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "_", description :: Text
description = "LOW LINE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 900, lspace :: Int
lspace = 1, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "`", description :: Text
description = "GRAVE ACCENT", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "{", description :: Text
description = "LEFT CURLY BRACKET", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "|", description :: Text
description = "VERTICAL LINE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 2, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["stretchy","symmetric","fence"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "|", description :: Text
description = "VERTICAL LINE", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "|", description :: Text
description = "VERTICAL LINE", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "||", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: ||", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 2, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["stretchy","symmetric","fence"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "||", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: ||", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "||", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: ||", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "|||", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: |||", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 2, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["stretchy","symmetric","fence"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "|||", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: |||", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "|||", description :: Text
description = "MULTIPLE CHARACTER OPERATOR: |||", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "}", description :: Text
description = "RIGHT CURLY BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "~", description :: Text
description = "TILDE", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\168", description :: Text
description = "DIAERESIS", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\170", description :: Text
description = "FEMININE ORDINAL INDICATOR", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\172", description :: Text
description = "NOT SIGN", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 680, lspace :: Int
lspace = 2, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\175", description :: Text
description = "MACRON", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\176", description :: Text
description = "DEGREE SIGN", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\177", description :: Text
description = "PLUS-MINUS SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 275, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\177", description :: Text
description = "PLUS-MINUS SIGN", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 275, lspace :: Int
lspace = 0, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\178", description :: Text
description = "SUPERSCRIPT TWO", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\179", description :: Text
description = "SUPERSCRIPT THREE", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\180", description :: Text
description = "ACUTE ACCENT", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\183", description :: Text
description = "MIDDLE DOT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 400, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\184", description :: Text
description = "CEDILLA", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\185", description :: Text
description = "SUPERSCRIPT ONE", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\186", description :: Text
description = "MASCULINE ORDINAL INDICATOR", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\215", description :: Text
description = "MULTIPLICATION SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 390, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\247", description :: Text
description = "DIVISION SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 660, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\710", description :: Text
description = "MODIFIER LETTER CIRCUMFLEX ACCENT", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\711", description :: Text
description = "CARON", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\713", description :: Text
description = "MODIFIER LETTER MACRON", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\714", description :: Text
description = "MODIFIER LETTER ACUTE ACCENT", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\715", description :: Text
description = "MODIFIER LETTER GRAVE ACCENT", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\717", description :: Text
description = "MODIFIER LETTER LOW MACRON", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\728", description :: Text
description = "BREVE", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\729", description :: Text
description = "DOT ABOVE", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\730", description :: Text
description = "RING ABOVE", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\732", description :: Text
description = "SMALL TILDE", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\733", description :: Text
description = "DOUBLE ACUTE ACCENT", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\759", description :: Text
description = "MODIFIER LETTER LOW TILDE", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\770", description :: Text
description = "COMBINING CIRCUMFLEX ACCENT", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\785", description :: Text
description = "COMBINING INVERTED BREVE", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\1014", description :: Text
description = "GREEK REVERSED LUNATE EPSILON SYMBOL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 110, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8214", description :: Text
description = "DOUBLE VERTICAL LINE", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["fence","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8214", description :: Text
description = "DOUBLE VERTICAL LINE", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["fence","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8216", description :: Text
description = "LEFT SINGLE QUOTATION MARK", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 10, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["fence","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8217", description :: Text
description = "RIGHT SINGLE QUOTATION MARK", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 10, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["fence","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8218", description :: Text
description = "SINGLE LOW-9 QUOTATION MARK", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8219", description :: Text
description = "SINGLE HIGH-REVERSED-9 QUOTATION MARK", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8220", description :: Text
description = "LEFT DOUBLE QUOTATION MARK", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 10, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["fence","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8221", description :: Text
description = "RIGHT DOUBLE QUOTATION MARK", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 10, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["fence","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8222", description :: Text
description = "DOUBLE LOW-9 QUOTATION MARK", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8223", description :: Text
description = "DOUBLE HIGH-REVERSED-9 QUOTATION MARK", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8226", description :: Text
description = "BULLET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 390, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8230", description :: Text
description = "HORIZONTAL ELLIPSIS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 150, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8242", description :: Text
description = "PRIME", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 800, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8243", description :: Text
description = "DOUBLE PRIME", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8244", description :: Text
description = "TRIPLE PRIME", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8245", description :: Text
description = "REVERSED PRIME", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8246", description :: Text
description = "REVERSED DOUBLE PRIME", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8247", description :: Text
description = "REVERSED TRIPLE PRIME", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8254", description :: Text
description = "OVERLINE", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8259", description :: Text
description = "HYPHEN BULLET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 390, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8260", description :: Text
description = "FRACTION SLASH", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8279", description :: Text
description = "QUADRUPLE PRIME", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8289", description :: Text
description = "FUNCTION APPLICATION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 850, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8290", description :: Text
description = "INVISIBLE TIMES", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 390, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8291", description :: Text
description = "INVISIBLE SEPARATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 40, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["separator"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8292", description :: Text
description = "INVISIBLE PLUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8411", description :: Text
description = "COMBINING THREE DOTS ABOVE", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8412", description :: Text
description = "COMBINING FOUR DOTS ABOVE", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8517", description :: Text
description = "DOUBLE-STRUCK ITALIC CAPITAL D", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 845, lspace :: Int
lspace = 2, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8518", description :: Text
description = "DOUBLE-STRUCK ITALIC SMALL D", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 845, lspace :: Int
lspace = 2, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8592", description :: Text
description = "LEFTWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8593", description :: Text
description = "UPWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8594", description :: Text
description = "RIGHTWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8595", description :: Text
description = "DOWNWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8596", description :: Text
description = "LEFT RIGHT ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8597", description :: Text
description = "UP DOWN ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8598", description :: Text
description = "NORTH WEST ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8599", description :: Text
description = "NORTH EAST ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8600", description :: Text
description = "SOUTH EAST ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8601", description :: Text
description = "SOUTH WEST ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8602", description :: Text
description = "LEFTWARDS ARROW WITH STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8603", description :: Text
description = "RIGHTWARDS ARROW WITH STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8604", description :: Text
description = "LEFTWARDS WAVE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8605", description :: Text
description = "RIGHTWARDS WAVE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8606", description :: Text
description = "LEFTWARDS TWO HEADED ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8607", description :: Text
description = "UPWARDS TWO HEADED ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8608", description :: Text
description = "RIGHTWARDS TWO HEADED ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8609", description :: Text
description = "DOWNWARDS TWO HEADED ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8610", description :: Text
description = "LEFTWARDS ARROW WITH TAIL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8611", description :: Text
description = "RIGHTWARDS ARROW WITH TAIL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8612", description :: Text
description = "LEFTWARDS ARROW FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8613", description :: Text
description = "UPWARDS ARROW FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8614", description :: Text
description = "RIGHTWARDS ARROW FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8615", description :: Text
description = "DOWNWARDS ARROW FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8616", description :: Text
description = "UP DOWN ARROW WITH BASE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8617", description :: Text
description = "LEFTWARDS ARROW WITH HOOK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8618", description :: Text
description = "RIGHTWARDS ARROW WITH HOOK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8619", description :: Text
description = "LEFTWARDS ARROW WITH LOOP", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8620", description :: Text
description = "RIGHTWARDS ARROW WITH LOOP", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8621", description :: Text
description = "LEFT RIGHT WAVE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8622", description :: Text
description = "LEFT RIGHT ARROW WITH STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8623", description :: Text
description = "DOWNWARDS ZIGZAG ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8624", description :: Text
description = "UPWARDS ARROW WITH TIP LEFTWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8625", description :: Text
description = "UPWARDS ARROW WITH TIP RIGHTWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8626", description :: Text
description = "DOWNWARDS ARROW WITH TIP LEFTWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8627", description :: Text
description = "DOWNWARDS ARROW WITH TIP RIGHTWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8628", description :: Text
description = "RIGHTWARDS ARROW WITH CORNER DOWNWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8629", description :: Text
description = "DOWNWARDS ARROW WITH CORNER LEFTWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8630", description :: Text
description = "ANTICLOCKWISE TOP SEMICIRCLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8631", description :: Text
description = "CLOCKWISE TOP SEMICIRCLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8632", description :: Text
description = "NORTH WEST ARROW TO LONG BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8633", description :: Text
description = "LEFTWARDS ARROW TO BAR OVER RIGHTWARDS ARROW TO BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8634", description :: Text
description = "ANTICLOCKWISE OPEN CIRCLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8635", description :: Text
description = "CLOCKWISE OPEN CIRCLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8636", description :: Text
description = "LEFTWARDS HARPOON WITH BARB UPWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8637", description :: Text
description = "LEFTWARDS HARPOON WITH BARB DOWNWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8638", description :: Text
description = "UPWARDS HARPOON WITH BARB RIGHTWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8639", description :: Text
description = "UPWARDS HARPOON WITH BARB LEFTWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8640", description :: Text
description = "RIGHTWARDS HARPOON WITH BARB UPWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8641", description :: Text
description = "RIGHTWARDS HARPOON WITH BARB DOWNWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8642", description :: Text
description = "DOWNWARDS HARPOON WITH BARB RIGHTWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8643", description :: Text
description = "DOWNWARDS HARPOON WITH BARB LEFTWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8644", description :: Text
description = "RIGHTWARDS ARROW OVER LEFTWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8645", description :: Text
description = "UPWARDS ARROW LEFTWARDS OF DOWNWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8646", description :: Text
description = "LEFTWARDS ARROW OVER RIGHTWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8647", description :: Text
description = "LEFTWARDS PAIRED ARROWS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8648", description :: Text
description = "UPWARDS PAIRED ARROWS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8649", description :: Text
description = "RIGHTWARDS PAIRED ARROWS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8650", description :: Text
description = "DOWNWARDS PAIRED ARROWS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8651", description :: Text
description = "LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8652", description :: Text
description = "RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8653", description :: Text
description = "LEFTWARDS DOUBLE ARROW WITH STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8654", description :: Text
description = "LEFT RIGHT DOUBLE ARROW WITH STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8655", description :: Text
description = "RIGHTWARDS DOUBLE ARROW WITH STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8656", description :: Text
description = "LEFTWARDS DOUBLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8657", description :: Text
description = "UPWARDS DOUBLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8658", description :: Text
description = "RIGHTWARDS DOUBLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8659", description :: Text
description = "DOWNWARDS DOUBLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8660", description :: Text
description = "LEFT RIGHT DOUBLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8661", description :: Text
description = "UP DOWN DOUBLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8662", description :: Text
description = "NORTH WEST DOUBLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8663", description :: Text
description = "NORTH EAST DOUBLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8664", description :: Text
description = "SOUTH EAST DOUBLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8665", description :: Text
description = "SOUTH WEST DOUBLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8666", description :: Text
description = "LEFTWARDS TRIPLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8667", description :: Text
description = "RIGHTWARDS TRIPLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8668", description :: Text
description = "LEFTWARDS SQUIGGLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8669", description :: Text
description = "RIGHTWARDS SQUIGGLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8670", description :: Text
description = "UPWARDS ARROW WITH DOUBLE STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8671", description :: Text
description = "DOWNWARDS ARROW WITH DOUBLE STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8672", description :: Text
description = "LEFTWARDS DASHED ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8673", description :: Text
description = "UPWARDS DASHED ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8674", description :: Text
description = "RIGHTWARDS DASHED ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8675", description :: Text
description = "DOWNWARDS DASHED ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8676", description :: Text
description = "LEFTWARDS ARROW TO BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8677", description :: Text
description = "RIGHTWARDS ARROW TO BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8678", description :: Text
description = "LEFTWARDS WHITE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8679", description :: Text
description = "UPWARDS WHITE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8680", description :: Text
description = "RIGHTWARDS WHITE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8681", description :: Text
description = "DOWNWARDS WHITE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8682", description :: Text
description = "UPWARDS WHITE ARROW FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8683", description :: Text
description = "UPWARDS WHITE ARROW ON PEDESTAL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8684", description :: Text
description = "UPWARDS WHITE ARROW ON PEDESTAL WITH HORIZONTAL BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8685", description :: Text
description = "UPWARDS WHITE ARROW ON PEDESTAL WITH VERTICAL BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8686", description :: Text
description = "UPWARDS WHITE DOUBLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8687", description :: Text
description = "UPWARDS WHITE DOUBLE ARROW ON PEDESTAL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8688", description :: Text
description = "RIGHTWARDS WHITE ARROW FROM WALL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8689", description :: Text
description = "NORTH WEST ARROW TO CORNER", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8690", description :: Text
description = "SOUTH EAST ARROW TO CORNER", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8691", description :: Text
description = "UP DOWN WHITE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8692", description :: Text
description = "RIGHT ARROW WITH SMALL CIRCLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8693", description :: Text
description = "DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8694", description :: Text
description = "THREE RIGHTWARDS ARROWS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8695", description :: Text
description = "LEFTWARDS ARROW WITH VERTICAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8696", description :: Text
description = "RIGHTWARDS ARROW WITH VERTICAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8697", description :: Text
description = "LEFT RIGHT ARROW WITH VERTICAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8698", description :: Text
description = "LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8699", description :: Text
description = "RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8700", description :: Text
description = "LEFT RIGHT ARROW WITH DOUBLE VERTICAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8701", description :: Text
description = "LEFTWARDS OPEN-HEADED ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8702", description :: Text
description = "RIGHTWARDS OPEN-HEADED ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8703", description :: Text
description = "LEFT RIGHT OPEN-HEADED ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8704", description :: Text
description = "FOR ALL", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 230, lspace :: Int
lspace = 2, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8705", description :: Text
description = "COMPLEMENT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 240, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8706", description :: Text
description = "PARTIAL DIFFERENTIAL", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 740, lspace :: Int
lspace = 2, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8707", description :: Text
description = "THERE EXISTS", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 230, lspace :: Int
lspace = 2, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8708", description :: Text
description = "THERE DOES NOT EXIST", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 230, lspace :: Int
lspace = 2, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8710", description :: Text
description = "INCREMENT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8711", description :: Text
description = "NABLA", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 740, lspace :: Int
lspace = 2, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8712", description :: Text
description = "ELEMENT OF", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 240, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8713", description :: Text
description = "NOT AN ELEMENT OF", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 240, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8714", description :: Text
description = "SMALL ELEMENT OF", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8715", description :: Text
description = "CONTAINS AS MEMBER", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 160, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8716", description :: Text
description = "DOES NOT CONTAIN AS MEMBER", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 240, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8717", description :: Text
description = "SMALL CONTAINS AS MEMBER", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8718", description :: Text
description = "END OF PROOF", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8719", description :: Text
description = "N-ARY PRODUCT", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 350, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8720", description :: Text
description = "N-ARY COPRODUCT", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 350, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8721", description :: Text
description = "N-ARY SUMMATION", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 290, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8722", description :: Text
description = "MINUS SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 275, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8722", description :: Text
description = "MINUS SIGN", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 275, lspace :: Int
lspace = 0, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8723", description :: Text
description = "MINUS-OR-PLUS SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 275, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8723", description :: Text
description = "MINUS-OR-PLUS SIGN", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 275, lspace :: Int
lspace = 0, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8724", description :: Text
description = "DOT PLUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 275, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8725", description :: Text
description = "DIVISION SLASH", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = ["stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8726", description :: Text
description = "SET MINUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 650, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8727", description :: Text
description = "ASTERISK OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8728", description :: Text
description = "RING OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8729", description :: Text
description = "BULLET OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8730", description :: Text
description = "SQUARE ROOT", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 845, lspace :: Int
lspace = 1, rspace :: Int
rspace = 1, properties :: [Text]
properties = ["stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8731", description :: Text
description = "CUBE ROOT", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 845, lspace :: Int
lspace = 1, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8732", description :: Text
description = "FOURTH ROOT", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 845, lspace :: Int
lspace = 1, rspace :: Int
rspace = 1, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8733", description :: Text
description = "PROPORTIONAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8735", description :: Text
description = "RIGHT ANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8736", description :: Text
description = "ANGLE", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 670, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8737", description :: Text
description = "MEASURED ANGLE", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 670, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8738", description :: Text
description = "SPHERICAL ANGLE", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 670, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8739", description :: Text
description = "DIVIDES", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8740", description :: Text
description = "DOES NOT DIVIDE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8741", description :: Text
description = "PARALLEL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8742", description :: Text
description = "NOT PARALLEL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8743", description :: Text
description = "LOGICAL AND", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 200, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8744", description :: Text
description = "LOGICAL OR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 190, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8745", description :: Text
description = "INTERSECTION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 350, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8746", description :: Text
description = "UNION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 350, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8747", description :: Text
description = "INTEGRAL", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 0, rspace :: Int
rspace = 1, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8748", description :: Text
description = "DOUBLE INTEGRAL", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 300, lspace :: Int
lspace = 0, rspace :: Int
rspace = 1, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8749", description :: Text
description = "TRIPLE INTEGRAL", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 300, lspace :: Int
lspace = 0, rspace :: Int
rspace = 1, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8750", description :: Text
description = "CONTOUR INTEGRAL", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 0, rspace :: Int
rspace = 1, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8751", description :: Text
description = "SURFACE INTEGRAL", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 0, rspace :: Int
rspace = 1, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8752", description :: Text
description = "VOLUME INTEGRAL", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 0, rspace :: Int
rspace = 1, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8753", description :: Text
description = "CLOCKWISE INTEGRAL", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 0, rspace :: Int
rspace = 1, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8754", description :: Text
description = "CLOCKWISE CONTOUR INTEGRAL", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 0, rspace :: Int
rspace = 1, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8755", description :: Text
description = "ANTICLOCKWISE CONTOUR INTEGRAL", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 0, rspace :: Int
rspace = 1, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8756", description :: Text
description = "THEREFORE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 70, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8757", description :: Text
description = "BECAUSE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 70, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8758", description :: Text
description = "RATIO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8759", description :: Text
description = "PROPORTION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8760", description :: Text
description = "DOT MINUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8761", description :: Text
description = "EXCESS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8762", description :: Text
description = "GEOMETRIC PROPORTION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8763", description :: Text
description = "HOMOTHETIC", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8764", description :: Text
description = "TILDE OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 250, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8765", description :: Text
description = "REVERSED TILDE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8765\817", description :: Text
description = "REVERSED TILDE with underline", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8766", description :: Text
description = "INVERTED LAZY S", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8767", description :: Text
description = "SINE WAVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8768", description :: Text
description = "WREATH PRODUCT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 340, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8769", description :: Text
description = "NOT TILDE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8770", description :: Text
description = "MINUS TILDE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8770\824", description :: Text
description = "MINUS TILDE with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8771", description :: Text
description = "ASYMPTOTICALLY EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8772", description :: Text
description = "NOT ASYMPTOTICALLY EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8773", description :: Text
description = "APPROXIMATELY EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8774", description :: Text
description = "APPROXIMATELY BUT NOT ACTUALLY EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8775", description :: Text
description = "NEITHER APPROXIMATELY NOR ACTUALLY EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8776", description :: Text
description = "ALMOST EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 247, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8777", description :: Text
description = "NOT ALMOST EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 250, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8778", description :: Text
description = "ALMOST EQUAL OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8779", description :: Text
description = "TRIPLE TILDE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8780", description :: Text
description = "ALL EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8781", description :: Text
description = "EQUIVALENT TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8782", description :: Text
description = "GEOMETRICALLY EQUIVALENT TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8782\824", description :: Text
description = "GEOMETRICALLY EQUIVALENT TO with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8783", description :: Text
description = "DIFFERENCE BETWEEN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8783\824", description :: Text
description = "DIFFERENCE BETWEEN with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8784", description :: Text
description = "APPROACHES THE LIMIT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8785", description :: Text
description = "GEOMETRICALLY EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8786", description :: Text
description = "APPROXIMATELY EQUAL TO OR THE IMAGE OF", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8787", description :: Text
description = "IMAGE OF OR APPROXIMATELY EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8788", description :: Text
description = "COLON EQUALS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8789", description :: Text
description = "EQUALS COLON", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8790", description :: Text
description = "RING IN EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8791", description :: Text
description = "RING EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8792", description :: Text
description = "CORRESPONDS TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8793", description :: Text
description = "ESTIMATES", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8794", description :: Text
description = "EQUIANGULAR TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8795", description :: Text
description = "STAR EQUALS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8796", description :: Text
description = "DELTA EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8797", description :: Text
description = "EQUAL TO BY DEFINITION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8798", description :: Text
description = "MEASURED BY", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8799", description :: Text
description = "QUESTIONED EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8800", description :: Text
description = "NOT EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 255, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8801", description :: Text
description = "IDENTICAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8802", description :: Text
description = "NOT IDENTICAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 252, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8803", description :: Text
description = "STRICTLY EQUIVALENT TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8804", description :: Text
description = "LESS-THAN OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 241, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8805", description :: Text
description = "GREATER-THAN OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 242, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8806", description :: Text
description = "LESS-THAN OVER EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8806\824", description :: Text
description = "LESS-THAN OVER EQUAL TO with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8807", description :: Text
description = "GREATER-THAN OVER EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8808", description :: Text
description = "LESS-THAN BUT NOT EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8809", description :: Text
description = "GREATER-THAN BUT NOT EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8810", description :: Text
description = "MUCH LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8810\824", description :: Text
description = "MUCH LESS THAN with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8811", description :: Text
description = "MUCH GREATER-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8811\824", description :: Text
description = "MUCH GREATER THAN with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8812", description :: Text
description = "BETWEEN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8813", description :: Text
description = "NOT EQUIVALENT TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8814", description :: Text
description = "NOT LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 246, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8815", description :: Text
description = "NOT GREATER-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 244, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8816", description :: Text
description = "NEITHER LESS-THAN NOR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8817", description :: Text
description = "NEITHER GREATER-THAN NOR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8818", description :: Text
description = "LESS-THAN OR EQUIVALENT TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8819", description :: Text
description = "GREATER-THAN OR EQUIVALENT TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8820", description :: Text
description = "NEITHER LESS-THAN NOR EQUIVALENT TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8821", description :: Text
description = "NEITHER GREATER-THAN NOR EQUIVALENT TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8822", description :: Text
description = "LESS-THAN OR GREATER-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8823", description :: Text
description = "GREATER-THAN OR LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8824", description :: Text
description = "NEITHER LESS-THAN NOR GREATER-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8825", description :: Text
description = "NEITHER GREATER-THAN NOR LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8826", description :: Text
description = "PRECEDES", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8827", description :: Text
description = "SUCCEEDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8828", description :: Text
description = "PRECEDES OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8829", description :: Text
description = "SUCCEEDS OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8830", description :: Text
description = "PRECEDES OR EQUIVALENT TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8831", description :: Text
description = "SUCCEEDS OR EQUIVALENT TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8831\824", description :: Text
description = "SUCCEEDS OR EQUIVALENT TO with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8832", description :: Text
description = "DOES NOT PRECEDE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8833", description :: Text
description = "DOES NOT SUCCEED", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8834", description :: Text
description = "SUBSET OF", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 240, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8834\8402", description :: Text
description = "SUBSET OF with vertical line", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 240, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8835", description :: Text
description = "SUPERSET OF", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 240, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8835\8402", description :: Text
description = "SUPERSET OF with vertical line", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 240, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8836", description :: Text
description = "NOT A SUBSET OF", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 240, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8837", description :: Text
description = "NOT A SUPERSET OF", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 240, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8838", description :: Text
description = "SUBSET OF OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 240, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8839", description :: Text
description = "SUPERSET OF OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 240, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8840", description :: Text
description = "NEITHER A SUBSET OF NOR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 240, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8841", description :: Text
description = "NEITHER A SUPERSET OF NOR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 240, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8842", description :: Text
description = "SUBSET OF WITH NOT EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 240, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8843", description :: Text
description = "SUPERSET OF WITH NOT EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 240, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8844", description :: Text
description = "MULTISET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8845", description :: Text
description = "MULTISET MULTIPLICATION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8846", description :: Text
description = "MULTISET UNION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8847", description :: Text
description = "SQUARE IMAGE OF", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8847\824", description :: Text
description = "SQUARE IMAGE OF with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8848", description :: Text
description = "SQUARE ORIGINAL OF", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8848\824", description :: Text
description = "SQUARE ORIGINAL OF with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8849", description :: Text
description = "SQUARE IMAGE OF OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8850", description :: Text
description = "SQUARE ORIGINAL OF OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8851", description :: Text
description = "SQUARE CAP", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8852", description :: Text
description = "SQUARE CUP", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8853", description :: Text
description = "CIRCLED PLUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 300, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8854", description :: Text
description = "CIRCLED MINUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 300, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8855", description :: Text
description = "CIRCLED TIMES", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 410, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8856", description :: Text
description = "CIRCLED DIVISION SLASH", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 300, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8857", description :: Text
description = "CIRCLED DOT OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 710, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8858", description :: Text
description = "CIRCLED RING OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8859", description :: Text
description = "CIRCLED ASTERISK OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8860", description :: Text
description = "CIRCLED EQUALS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8861", description :: Text
description = "CIRCLED DASH", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8862", description :: Text
description = "SQUARED PLUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 275, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8863", description :: Text
description = "SQUARED MINUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 275, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8864", description :: Text
description = "SQUARED TIMES", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 390, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8865", description :: Text
description = "SQUARED DOT OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 390, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8866", description :: Text
description = "RIGHT TACK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 170, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8867", description :: Text
description = "LEFT TACK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 170, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8868", description :: Text
description = "DOWN TACK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 170, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8869", description :: Text
description = "UP TACK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8870", description :: Text
description = "ASSERTION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8871", description :: Text
description = "MODELS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8872", description :: Text
description = "TRUE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 170, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8873", description :: Text
description = "FORCES", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 170, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8874", description :: Text
description = "TRIPLE VERTICAL BAR RIGHT TURNSTILE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8875", description :: Text
description = "DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8876", description :: Text
description = "DOES NOT PROVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 170, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8877", description :: Text
description = "NOT TRUE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 170, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8878", description :: Text
description = "DOES NOT FORCE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 170, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8879", description :: Text
description = "NEGATED DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 170, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8880", description :: Text
description = "PRECEDES UNDER RELATION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8881", description :: Text
description = "SUCCEEDS UNDER RELATION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8882", description :: Text
description = "NORMAL SUBGROUP OF", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8883", description :: Text
description = "CONTAINS AS NORMAL SUBGROUP", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8884", description :: Text
description = "NORMAL SUBGROUP OF OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8885", description :: Text
description = "CONTAINS AS NORMAL SUBGROUP OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8886", description :: Text
description = "ORIGINAL OF", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8887", description :: Text
description = "IMAGE OF", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8888", description :: Text
description = "MULTIMAP", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8889", description :: Text
description = "HERMITIAN CONJUGATE MATRIX", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8890", description :: Text
description = "INTERCALATE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8891", description :: Text
description = "XOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8892", description :: Text
description = "NAND", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8893", description :: Text
description = "NOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8894", description :: Text
description = "RIGHT ANGLE WITH ARC", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8895", description :: Text
description = "RIGHT TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8896", description :: Text
description = "N-ARY LOGICAL AND", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 330, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8897", description :: Text
description = "N-ARY LOGICAL OR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 330, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8898", description :: Text
description = "N-ARY INTERSECTION", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 330, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8899", description :: Text
description = "N-ARY UNION", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 320, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8900", description :: Text
description = "DIAMOND OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8901", description :: Text
description = "DOT OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 390, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8902", description :: Text
description = "STAR OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8903", description :: Text
description = "DIVISION TIMES", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8904", description :: Text
description = "BOWTIE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8905", description :: Text
description = "LEFT NORMAL FACTOR SEMIDIRECT PRODUCT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8906", description :: Text
description = "RIGHT NORMAL FACTOR SEMIDIRECT PRODUCT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8907", description :: Text
description = "LEFT SEMIDIRECT PRODUCT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8908", description :: Text
description = "RIGHT SEMIDIRECT PRODUCT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8909", description :: Text
description = "REVERSED TILDE EQUALS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8910", description :: Text
description = "CURLY LOGICAL OR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8911", description :: Text
description = "CURLY LOGICAL AND", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8912", description :: Text
description = "DOUBLE SUBSET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8913", description :: Text
description = "DOUBLE SUPERSET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8914", description :: Text
description = "DOUBLE INTERSECTION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8915", description :: Text
description = "DOUBLE UNION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8916", description :: Text
description = "PITCHFORK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8917", description :: Text
description = "EQUAL AND PARALLEL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8918", description :: Text
description = "LESS-THAN WITH DOT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8919", description :: Text
description = "GREATER-THAN WITH DOT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8920", description :: Text
description = "VERY MUCH LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8921", description :: Text
description = "VERY MUCH GREATER-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8922", description :: Text
description = "LESS-THAN EQUAL TO OR GREATER-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8923", description :: Text
description = "GREATER-THAN EQUAL TO OR LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8924", description :: Text
description = "EQUAL TO OR LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8925", description :: Text
description = "EQUAL TO OR GREATER-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8926", description :: Text
description = "EQUAL TO OR PRECEDES", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8927", description :: Text
description = "EQUAL TO OR SUCCEEDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8928", description :: Text
description = "DOES NOT PRECEDE OR EQUAL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8929", description :: Text
description = "DOES NOT SUCCEED OR EQUAL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8930", description :: Text
description = "NOT SQUARE IMAGE OF OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8931", description :: Text
description = "NOT SQUARE ORIGINAL OF OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8932", description :: Text
description = "SQUARE IMAGE OF OR NOT EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8933", description :: Text
description = "SQUARE ORIGINAL OF OR NOT EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8934", description :: Text
description = "LESS-THAN BUT NOT EQUIVALENT TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8935", description :: Text
description = "GREATER-THAN BUT NOT EQUIVALENT TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8936", description :: Text
description = "PRECEDES BUT NOT EQUIVALENT TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8937", description :: Text
description = "SUCCEEDS BUT NOT EQUIVALENT TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8938", description :: Text
description = "NOT NORMAL SUBGROUP OF", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8939", description :: Text
description = "DOES NOT CONTAIN AS NORMAL SUBGROUP", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8940", description :: Text
description = "NOT NORMAL SUBGROUP OF OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8941", description :: Text
description = "DOES NOT CONTAIN AS NORMAL SUBGROUP OR EQUAL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8942", description :: Text
description = "VERTICAL ELLIPSIS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 150, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8943", description :: Text
description = "MIDLINE HORIZONTAL ELLIPSIS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 150, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8944", description :: Text
description = "UP RIGHT DIAGONAL ELLIPSIS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8945", description :: Text
description = "DOWN RIGHT DIAGONAL ELLIPSIS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 150, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8946", description :: Text
description = "ELEMENT OF WITH LONG HORIZONTAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8947", description :: Text
description = "ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8948", description :: Text
description = "SMALL ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8949", description :: Text
description = "ELEMENT OF WITH DOT ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8950", description :: Text
description = "ELEMENT OF WITH OVERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8951", description :: Text
description = "SMALL ELEMENT OF WITH OVERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8952", description :: Text
description = "ELEMENT OF WITH UNDERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8953", description :: Text
description = "ELEMENT OF WITH TWO HORIZONTAL STROKES", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8954", description :: Text
description = "CONTAINS WITH LONG HORIZONTAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8955", description :: Text
description = "CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8956", description :: Text
description = "SMALL CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8957", description :: Text
description = "CONTAINS WITH OVERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8958", description :: Text
description = "SMALL CONTAINS WITH OVERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8959", description :: Text
description = "Z NOTATION BAG MEMBERSHIP", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8968", description :: Text
description = "LEFT CEILING", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8969", description :: Text
description = "RIGHT CEILING", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8970", description :: Text
description = "LEFT FLOOR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\8971", description :: Text
description = "RIGHT FLOOR", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9001", description :: Text
description = "LEFT-POINTING ANGLE BRACKET", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9002", description :: Text
description = "RIGHT-POINTING ANGLE BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9140", description :: Text
description = "TOP SQUARE BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9141", description :: Text
description = "BOTTOM SQUARE BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9180", description :: Text
description = "TOP PARENTHESIS", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9181", description :: Text
description = "BOTTOM PARENTHESIS", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9182", description :: Text
description = "TOP CURLY BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9183", description :: Text
description = "BOTTOM CURLY BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9184", description :: Text
description = "TOP TORTOISE SHELL BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9185", description :: Text
description = "BOTTOM TORTOISE SHELL BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["accent","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9632", description :: Text
description = "BLACK SQUARE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9633", description :: Text
description = "WHITE SQUARE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9642", description :: Text
description = "BLACK SMALL SQUARE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9643", description :: Text
description = "WHITE SMALL SQUARE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9645", description :: Text
description = "WHITE RECTANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9646", description :: Text
description = "BLACK VERTICAL RECTANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9647", description :: Text
description = "WHITE VERTICAL RECTANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9648", description :: Text
description = "BLACK PARALLELOGRAM", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9649", description :: Text
description = "WHITE PARALLELOGRAM", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9650", description :: Text
description = "BLACK UP-POINTING TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9651", description :: Text
description = "WHITE UP-POINTING TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9652", description :: Text
description = "BLACK UP-POINTING SMALL TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9653", description :: Text
description = "WHITE UP-POINTING SMALL TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9654", description :: Text
description = "BLACK RIGHT-POINTING TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9655", description :: Text
description = "WHITE RIGHT-POINTING TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9656", description :: Text
description = "BLACK RIGHT-POINTING SMALL TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9657", description :: Text
description = "WHITE RIGHT-POINTING SMALL TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9660", description :: Text
description = "BLACK DOWN-POINTING TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9661", description :: Text
description = "WHITE DOWN-POINTING TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9662", description :: Text
description = "BLACK DOWN-POINTING SMALL TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9663", description :: Text
description = "WHITE DOWN-POINTING SMALL TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9664", description :: Text
description = "BLACK LEFT-POINTING TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9665", description :: Text
description = "WHITE LEFT-POINTING TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9666", description :: Text
description = "BLACK LEFT-POINTING SMALL TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9667", description :: Text
description = "WHITE LEFT-POINTING SMALL TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9668", description :: Text
description = "BLACK LEFT-POINTING POINTER", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9669", description :: Text
description = "WHITE LEFT-POINTING POINTER", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9670", description :: Text
description = "BLACK DIAMOND", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9671", description :: Text
description = "WHITE DIAMOND", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9672", description :: Text
description = "WHITE DIAMOND CONTAINING BLACK SMALL DIAMOND", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9673", description :: Text
description = "FISHEYE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9676", description :: Text
description = "DOTTED CIRCLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9677", description :: Text
description = "CIRCLE WITH VERTICAL FILL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9678", description :: Text
description = "BULLSEYE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9679", description :: Text
description = "BLACK CIRCLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9686", description :: Text
description = "LEFT HALF BLACK CIRCLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9687", description :: Text
description = "RIGHT HALF BLACK CIRCLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9702", description :: Text
description = "WHITE BULLET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9837", description :: Text
description = "MUSIC FLAT SIGN", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 800, lspace :: Int
lspace = 0, rspace :: Int
rspace = 2, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9838", description :: Text
description = "MUSIC NATURAL SIGN", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 800, lspace :: Int
lspace = 0, rspace :: Int
rspace = 2, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\9839", description :: Text
description = "MUSIC SHARP SIGN", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 800, lspace :: Int
lspace = 0, rspace :: Int
rspace = 2, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10072", description :: Text
description = "LIGHT VERTICAL BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10098", description :: Text
description = "LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10099", description :: Text
description = "LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10214", description :: Text
description = "MATHEMATICAL LEFT WHITE SQUARE BRACKET", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10215", description :: Text
description = "MATHEMATICAL RIGHT WHITE SQUARE BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10216", description :: Text
description = "MATHEMATICAL LEFT ANGLE BRACKET", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10217", description :: Text
description = "MATHEMATICAL RIGHT ANGLE BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10218", description :: Text
description = "MATHEMATICAL LEFT DOUBLE ANGLE BRACKET", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10219", description :: Text
description = "MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10220", description :: Text
description = "MATHEMATICAL LEFT WHITE TORTOISE SHELL BRACKET", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10221", description :: Text
description = "MATHEMATICAL RIGHT WHITE TORTOISE SHELL BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10222", description :: Text
description = "MATHEMATICAL LEFT FLATTENED PARENTHESIS", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10223", description :: Text
description = "MATHEMATICAL RIGHT FLATTENED PARENTHESIS", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10224", description :: Text
description = "UPWARDS QUADRUPLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10225", description :: Text
description = "DOWNWARDS QUADRUPLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10229", description :: Text
description = "LONG LEFTWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10230", description :: Text
description = "LONG RIGHTWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10231", description :: Text
description = "LONG LEFT RIGHT ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10232", description :: Text
description = "LONG LEFTWARDS DOUBLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10233", description :: Text
description = "LONG RIGHTWARDS DOUBLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10234", description :: Text
description = "LONG LEFT RIGHT DOUBLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10235", description :: Text
description = "LONG LEFTWARDS ARROW FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10236", description :: Text
description = "LONG RIGHTWARDS ARROW FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10237", description :: Text
description = "LONG LEFTWARDS DOUBLE ARROW FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10238", description :: Text
description = "LONG RIGHTWARDS DOUBLE ARROW FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10239", description :: Text
description = "LONG RIGHTWARDS SQUIGGLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10496", description :: Text
description = "RIGHTWARDS TWO-HEADED ARROW WITH VERTICAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10497", description :: Text
description = "RIGHTWARDS TWO-HEADED ARROW WITH DOUBLE VERTICAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10498", description :: Text
description = "LEFTWARDS DOUBLE ARROW WITH VERTICAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10499", description :: Text
description = "RIGHTWARDS DOUBLE ARROW WITH VERTICAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10500", description :: Text
description = "LEFT RIGHT DOUBLE ARROW WITH VERTICAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10501", description :: Text
description = "RIGHTWARDS TWO-HEADED ARROW FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10502", description :: Text
description = "LEFTWARDS DOUBLE ARROW FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10503", description :: Text
description = "RIGHTWARDS DOUBLE ARROW FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10504", description :: Text
description = "DOWNWARDS ARROW WITH HORIZONTAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10505", description :: Text
description = "UPWARDS ARROW WITH HORIZONTAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10506", description :: Text
description = "UPWARDS TRIPLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10507", description :: Text
description = "DOWNWARDS TRIPLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10508", description :: Text
description = "LEFTWARDS DOUBLE DASH ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10509", description :: Text
description = "RIGHTWARDS DOUBLE DASH ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10510", description :: Text
description = "LEFTWARDS TRIPLE DASH ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10511", description :: Text
description = "RIGHTWARDS TRIPLE DASH ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10512", description :: Text
description = "RIGHTWARDS TWO-HEADED TRIPLE DASH ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10513", description :: Text
description = "RIGHTWARDS ARROW WITH DOTTED STEM", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10514", description :: Text
description = "UPWARDS ARROW TO BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10515", description :: Text
description = "DOWNWARDS ARROW TO BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10516", description :: Text
description = "RIGHTWARDS ARROW WITH TAIL WITH VERTICAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10517", description :: Text
description = "RIGHTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10518", description :: Text
description = "RIGHTWARDS TWO-HEADED ARROW WITH TAIL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10519", description :: Text
description = "RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH VERTICAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10520", description :: Text
description = "RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10521", description :: Text
description = "LEFTWARDS ARROW-TAIL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10522", description :: Text
description = "RIGHTWARDS ARROW-TAIL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10523", description :: Text
description = "LEFTWARDS DOUBLE ARROW-TAIL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10524", description :: Text
description = "RIGHTWARDS DOUBLE ARROW-TAIL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10525", description :: Text
description = "LEFTWARDS ARROW TO BLACK DIAMOND", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10526", description :: Text
description = "RIGHTWARDS ARROW TO BLACK DIAMOND", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10527", description :: Text
description = "LEFTWARDS ARROW FROM BAR TO BLACK DIAMOND", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10528", description :: Text
description = "RIGHTWARDS ARROW FROM BAR TO BLACK DIAMOND", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10529", description :: Text
description = "NORTH WEST AND SOUTH EAST ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10530", description :: Text
description = "NORTH EAST AND SOUTH WEST ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10531", description :: Text
description = "NORTH WEST ARROW WITH HOOK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10532", description :: Text
description = "NORTH EAST ARROW WITH HOOK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10533", description :: Text
description = "SOUTH EAST ARROW WITH HOOK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10534", description :: Text
description = "SOUTH WEST ARROW WITH HOOK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10535", description :: Text
description = "NORTH WEST ARROW AND NORTH EAST ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10536", description :: Text
description = "NORTH EAST ARROW AND SOUTH EAST ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10537", description :: Text
description = "SOUTH EAST ARROW AND SOUTH WEST ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10538", description :: Text
description = "SOUTH WEST ARROW AND NORTH WEST ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10539", description :: Text
description = "RISING DIAGONAL CROSSING FALLING DIAGONAL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10540", description :: Text
description = "FALLING DIAGONAL CROSSING RISING DIAGONAL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10541", description :: Text
description = "SOUTH EAST ARROW CROSSING NORTH EAST ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10542", description :: Text
description = "NORTH EAST ARROW CROSSING SOUTH EAST ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10543", description :: Text
description = "FALLING DIAGONAL CROSSING NORTH EAST ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10544", description :: Text
description = "RISING DIAGONAL CROSSING SOUTH EAST ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10545", description :: Text
description = "NORTH EAST ARROW CROSSING NORTH WEST ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10546", description :: Text
description = "NORTH WEST ARROW CROSSING NORTH EAST ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10547", description :: Text
description = "WAVE ARROW POINTING DIRECTLY RIGHT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10548", description :: Text
description = "ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10549", description :: Text
description = "ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10550", description :: Text
description = "ARROW POINTING DOWNWARDS THEN CURVING LEFTWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10551", description :: Text
description = "ARROW POINTING DOWNWARDS THEN CURVING RIGHTWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10552", description :: Text
description = "RIGHT-SIDE ARC CLOCKWISE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10553", description :: Text
description = "LEFT-SIDE ARC ANTICLOCKWISE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10554", description :: Text
description = "TOP ARC ANTICLOCKWISE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10555", description :: Text
description = "BOTTOM ARC ANTICLOCKWISE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10556", description :: Text
description = "TOP ARC CLOCKWISE ARROW WITH MINUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10557", description :: Text
description = "TOP ARC ANTICLOCKWISE ARROW WITH PLUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10558", description :: Text
description = "LOWER RIGHT SEMICIRCULAR CLOCKWISE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10559", description :: Text
description = "LOWER LEFT SEMICIRCULAR ANTICLOCKWISE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10560", description :: Text
description = "ANTICLOCKWISE CLOSED CIRCLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10561", description :: Text
description = "CLOCKWISE CLOSED CIRCLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10562", description :: Text
description = "RIGHTWARDS ARROW ABOVE SHORT LEFTWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10563", description :: Text
description = "LEFTWARDS ARROW ABOVE SHORT RIGHTWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10564", description :: Text
description = "SHORT RIGHTWARDS ARROW ABOVE LEFTWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10565", description :: Text
description = "RIGHTWARDS ARROW WITH PLUS BELOW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10566", description :: Text
description = "LEFTWARDS ARROW WITH PLUS BELOW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10567", description :: Text
description = "RIGHTWARDS ARROW THROUGH X", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10568", description :: Text
description = "LEFT RIGHT ARROW THROUGH SMALL CIRCLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10569", description :: Text
description = "UPWARDS TWO-HEADED ARROW FROM SMALL CIRCLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10570", description :: Text
description = "LEFT BARB UP RIGHT BARB DOWN HARPOON", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10571", description :: Text
description = "LEFT BARB DOWN RIGHT BARB UP HARPOON", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10572", description :: Text
description = "UP BARB RIGHT DOWN BARB LEFT HARPOON", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10573", description :: Text
description = "UP BARB LEFT DOWN BARB RIGHT HARPOON", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10574", description :: Text
description = "LEFT BARB UP RIGHT BARB UP HARPOON", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10575", description :: Text
description = "UP BARB RIGHT DOWN BARB RIGHT HARPOON", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10576", description :: Text
description = "LEFT BARB DOWN RIGHT BARB DOWN HARPOON", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10577", description :: Text
description = "UP BARB LEFT DOWN BARB LEFT HARPOON", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10578", description :: Text
description = "LEFTWARDS HARPOON WITH BARB UP TO BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10579", description :: Text
description = "RIGHTWARDS HARPOON WITH BARB UP TO BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10580", description :: Text
description = "UPWARDS HARPOON WITH BARB RIGHT TO BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10581", description :: Text
description = "DOWNWARDS HARPOON WITH BARB RIGHT TO BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10582", description :: Text
description = "LEFTWARDS HARPOON WITH BARB DOWN TO BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10583", description :: Text
description = "RIGHTWARDS HARPOON WITH BARB DOWN TO BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10584", description :: Text
description = "UPWARDS HARPOON WITH BARB LEFT TO BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10585", description :: Text
description = "DOWNWARDS HARPOON WITH BARB LEFT TO BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10586", description :: Text
description = "LEFTWARDS HARPOON WITH BARB UP FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10587", description :: Text
description = "RIGHTWARDS HARPOON WITH BARB UP FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10588", description :: Text
description = "UPWARDS HARPOON WITH BARB RIGHT FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10589", description :: Text
description = "DOWNWARDS HARPOON WITH BARB RIGHT FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10590", description :: Text
description = "LEFTWARDS HARPOON WITH BARB DOWN FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10591", description :: Text
description = "RIGHTWARDS HARPOON WITH BARB DOWN FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy","accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10592", description :: Text
description = "UPWARDS HARPOON WITH BARB LEFT FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10593", description :: Text
description = "DOWNWARDS HARPOON WITH BARB LEFT FROM BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10594", description :: Text
description = "LEFTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB DOWN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10595", description :: Text
description = "UPWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10596", description :: Text
description = "RIGHTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB DOWN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10597", description :: Text
description = "DOWNWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10598", description :: Text
description = "LEFTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB UP", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10599", description :: Text
description = "LEFTWARDS HARPOON WITH BARB DOWN ABOVE RIGHTWARDS HARPOON WITH BARB DOWN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10600", description :: Text
description = "RIGHTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB UP", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10601", description :: Text
description = "RIGHTWARDS HARPOON WITH BARB DOWN ABOVE LEFTWARDS HARPOON WITH BARB DOWN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10602", description :: Text
description = "LEFTWARDS HARPOON WITH BARB UP ABOVE LONG DASH", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10603", description :: Text
description = "LEFTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10604", description :: Text
description = "RIGHTWARDS HARPOON WITH BARB UP ABOVE LONG DASH", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10605", description :: Text
description = "RIGHTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10606", description :: Text
description = "UPWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10607", description :: Text
description = "DOWNWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10608", description :: Text
description = "RIGHT DOUBLE ARROW WITH ROUNDED HEAD", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10609", description :: Text
description = "EQUALS SIGN ABOVE RIGHTWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10610", description :: Text
description = "TILDE OPERATOR ABOVE RIGHTWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10611", description :: Text
description = "LEFTWARDS ARROW ABOVE TILDE OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10612", description :: Text
description = "RIGHTWARDS ARROW ABOVE TILDE OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10613", description :: Text
description = "RIGHTWARDS ARROW ABOVE ALMOST EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10614", description :: Text
description = "LESS-THAN ABOVE LEFTWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10615", description :: Text
description = "LEFTWARDS ARROW THROUGH LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10616", description :: Text
description = "GREATER-THAN ABOVE RIGHTWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10617", description :: Text
description = "SUBSET ABOVE RIGHTWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10618", description :: Text
description = "LEFTWARDS ARROW THROUGH SUBSET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10619", description :: Text
description = "SUPERSET ABOVE LEFTWARDS ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10620", description :: Text
description = "LEFT FISH TAIL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10621", description :: Text
description = "RIGHT FISH TAIL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10622", description :: Text
description = "UP FISH TAIL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10623", description :: Text
description = "DOWN FISH TAIL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10624", description :: Text
description = "TRIPLE VERTICAL BAR DELIMITER", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["fence","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10624", description :: Text
description = "TRIPLE VERTICAL BAR DELIMITER", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["fence","stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10625", description :: Text
description = "Z NOTATION SPOT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10626", description :: Text
description = "Z NOTATION TYPE COLON", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10627", description :: Text
description = "LEFT WHITE CURLY BRACKET", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10628", description :: Text
description = "RIGHT WHITE CURLY BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10629", description :: Text
description = "LEFT WHITE PARENTHESIS", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10630", description :: Text
description = "RIGHT WHITE PARENTHESIS", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10631", description :: Text
description = "Z NOTATION LEFT IMAGE BRACKET", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10632", description :: Text
description = "Z NOTATION RIGHT IMAGE BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10633", description :: Text
description = "Z NOTATION LEFT BINDING BRACKET", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10634", description :: Text
description = "Z NOTATION RIGHT BINDING BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10635", description :: Text
description = "LEFT SQUARE BRACKET WITH UNDERBAR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10636", description :: Text
description = "RIGHT SQUARE BRACKET WITH UNDERBAR", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10637", description :: Text
description = "LEFT SQUARE BRACKET WITH TICK IN TOP CORNER", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10638", description :: Text
description = "RIGHT SQUARE BRACKET WITH TICK IN BOTTOM CORNER", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10639", description :: Text
description = "LEFT SQUARE BRACKET WITH TICK IN BOTTOM CORNER", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10640", description :: Text
description = "RIGHT SQUARE BRACKET WITH TICK IN TOP CORNER", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10641", description :: Text
description = "LEFT ANGLE BRACKET WITH DOT", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10642", description :: Text
description = "RIGHT ANGLE BRACKET WITH DOT", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10643", description :: Text
description = "LEFT ARC LESS-THAN BRACKET", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10644", description :: Text
description = "RIGHT ARC GREATER-THAN BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10645", description :: Text
description = "DOUBLE LEFT ARC GREATER-THAN BRACKET", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10646", description :: Text
description = "DOUBLE RIGHT ARC LESS-THAN BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10647", description :: Text
description = "LEFT BLACK TORTOISE SHELL BRACKET", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10648", description :: Text
description = "RIGHT BLACK TORTOISE SHELL BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10649", description :: Text
description = "DOTTED FENCE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10650", description :: Text
description = "VERTICAL ZIGZAG LINE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10651", description :: Text
description = "MEASURED ANGLE OPENING LEFT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10652", description :: Text
description = "RIGHT ANGLE VARIANT WITH SQUARE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10653", description :: Text
description = "MEASURED RIGHT ANGLE WITH DOT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10654", description :: Text
description = "ANGLE WITH S INSIDE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10655", description :: Text
description = "ACUTE ANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10656", description :: Text
description = "SPHERICAL ANGLE OPENING LEFT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10657", description :: Text
description = "SPHERICAL ANGLE OPENING UP", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10658", description :: Text
description = "TURNED ANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10659", description :: Text
description = "REVERSED ANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10660", description :: Text
description = "ANGLE WITH UNDERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10661", description :: Text
description = "REVERSED ANGLE WITH UNDERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10662", description :: Text
description = "OBLIQUE ANGLE OPENING UP", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10663", description :: Text
description = "OBLIQUE ANGLE OPENING DOWN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10664", description :: Text
description = "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND RIGHT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10665", description :: Text
description = "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND LEFT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10666", description :: Text
description = "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND RIGHT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10667", description :: Text
description = "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND LEFT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10668", description :: Text
description = "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND UP", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10669", description :: Text
description = "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND UP", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10670", description :: Text
description = "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND DOWN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10671", description :: Text
description = "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND DOWN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10672", description :: Text
description = "REVERSED EMPTY SET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10673", description :: Text
description = "EMPTY SET WITH OVERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10674", description :: Text
description = "EMPTY SET WITH SMALL CIRCLE ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10675", description :: Text
description = "EMPTY SET WITH RIGHT ARROW ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10676", description :: Text
description = "EMPTY SET WITH LEFT ARROW ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10677", description :: Text
description = "CIRCLE WITH HORIZONTAL BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10678", description :: Text
description = "CIRCLED VERTICAL BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10679", description :: Text
description = "CIRCLED PARALLEL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10680", description :: Text
description = "CIRCLED REVERSE SOLIDUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10681", description :: Text
description = "CIRCLED PERPENDICULAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10682", description :: Text
description = "CIRCLE DIVIDED BY HORIZONTAL BAR AND TOP HALF DIVIDED BY VERTICAL BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10683", description :: Text
description = "CIRCLE WITH SUPERIMPOSED X", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10684", description :: Text
description = "CIRCLED ANTICLOCKWISE-ROTATED DIVISION SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10685", description :: Text
description = "UP ARROW THROUGH CIRCLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10686", description :: Text
description = "CIRCLED WHITE BULLET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10687", description :: Text
description = "CIRCLED BULLET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10688", description :: Text
description = "CIRCLED LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10689", description :: Text
description = "CIRCLED GREATER-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10690", description :: Text
description = "CIRCLE WITH SMALL CIRCLE TO THE RIGHT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10691", description :: Text
description = "CIRCLE WITH TWO HORIZONTAL STROKES TO THE RIGHT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10692", description :: Text
description = "SQUARED RISING DIAGONAL SLASH", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10693", description :: Text
description = "SQUARED FALLING DIAGONAL SLASH", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10694", description :: Text
description = "SQUARED ASTERISK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10695", description :: Text
description = "SQUARED SMALL CIRCLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10696", description :: Text
description = "SQUARED SQUARE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10697", description :: Text
description = "TWO JOINED SQUARES", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10698", description :: Text
description = "TRIANGLE WITH DOT ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10699", description :: Text
description = "TRIANGLE WITH UNDERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10700", description :: Text
description = "S IN TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10701", description :: Text
description = "TRIANGLE WITH SERIFS AT BOTTOM", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10702", description :: Text
description = "RIGHT TRIANGLE ABOVE LEFT TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10703", description :: Text
description = "LEFT TRIANGLE BESIDE VERTICAL BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10703\824", description :: Text
description = "LEFT TRIANGLE BESIDE VERTICAL BAR with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10704", description :: Text
description = "VERTICAL BAR BESIDE RIGHT TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10704\824", description :: Text
description = "VERTICAL BAR BESIDE RIGHT TRIANGLE with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10705", description :: Text
description = "BOWTIE WITH LEFT HALF BLACK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10706", description :: Text
description = "BOWTIE WITH RIGHT HALF BLACK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10707", description :: Text
description = "BLACK BOWTIE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10708", description :: Text
description = "TIMES WITH LEFT HALF BLACK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10709", description :: Text
description = "TIMES WITH RIGHT HALF BLACK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10710", description :: Text
description = "WHITE HOURGLASS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10711", description :: Text
description = "BLACK HOURGLASS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10712", description :: Text
description = "LEFT WIGGLY FENCE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10713", description :: Text
description = "RIGHT WIGGLY FENCE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10715", description :: Text
description = "RIGHT DOUBLE WIGGLY FENCE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10716", description :: Text
description = "INCOMPLETE INFINITY", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10717", description :: Text
description = "TIE OVER INFINITY", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10718", description :: Text
description = "INFINITY NEGATED WITH VERTICAL BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10719", description :: Text
description = "DOUBLE-ENDED MULTIMAP", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10720", description :: Text
description = "SQUARE WITH CONTOURED OUTLINE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10721", description :: Text
description = "INCREASES AS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10722", description :: Text
description = "SHUFFLE PRODUCT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10723", description :: Text
description = "EQUALS SIGN AND SLANTED PARALLEL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10724", description :: Text
description = "EQUALS SIGN AND SLANTED PARALLEL WITH TILDE ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10725", description :: Text
description = "IDENTICAL TO AND SLANTED PARALLEL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10726", description :: Text
description = "GLEICH STARK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10727", description :: Text
description = "THERMODYNAMIC", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10728", description :: Text
description = "DOWN-POINTING TRIANGLE WITH LEFT HALF BLACK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10729", description :: Text
description = "DOWN-POINTING TRIANGLE WITH RIGHT HALF BLACK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10730", description :: Text
description = "BLACK DIAMOND WITH DOWN ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10731", description :: Text
description = "BLACK LOZENGE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10732", description :: Text
description = "WHITE CIRCLE WITH DOWN ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10733", description :: Text
description = "BLACK CIRCLE WITH DOWN ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10734", description :: Text
description = "ERROR-BARRED WHITE SQUARE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10735", description :: Text
description = "ERROR-BARRED BLACK SQUARE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10736", description :: Text
description = "ERROR-BARRED WHITE DIAMOND", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10737", description :: Text
description = "ERROR-BARRED BLACK DIAMOND", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10738", description :: Text
description = "ERROR-BARRED WHITE CIRCLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10739", description :: Text
description = "ERROR-BARRED BLACK CIRCLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10740", description :: Text
description = "RULE-DELAYED", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10741", description :: Text
description = "REVERSE SOLIDUS OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10742", description :: Text
description = "SOLIDUS WITH OVERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10743", description :: Text
description = "REVERSE SOLIDUS WITH HORIZONTAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10744", description :: Text
description = "BIG SOLIDUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10745", description :: Text
description = "BIG REVERSE SOLIDUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10746", description :: Text
description = "DOUBLE PLUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10747", description :: Text
description = "TRIPLE PLUS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10748", description :: Text
description = "LEFT-POINTING CURVED ANGLE BRACKET", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10749", description :: Text
description = "RIGHT-POINTING CURVED ANGLE BRACKET", form :: FormType
form = FormType
FPostfix, priority :: Int
priority = 20, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["symmetric","fence","stretchy","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10750", description :: Text
description = "TINY", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10751", description :: Text
description = "MINY", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10752", description :: Text
description = "N-ARY CIRCLED DOT OPERATOR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 330, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10753", description :: Text
description = "N-ARY CIRCLED PLUS OPERATOR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 300, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10754", description :: Text
description = "N-ARY CIRCLED TIMES OPERATOR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 330, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10755", description :: Text
description = "N-ARY UNION OPERATOR WITH DOT", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 320, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10756", description :: Text
description = "N-ARY UNION OPERATOR WITH PLUS", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 320, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10757", description :: Text
description = "N-ARY SQUARE INTERSECTION OPERATOR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 330, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10758", description :: Text
description = "N-ARY SQUARE UNION OPERATOR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 330, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10759", description :: Text
description = "TWO LOGICAL AND OPERATOR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 330, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10760", description :: Text
description = "TWO LOGICAL OR OPERATOR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 330, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10761", description :: Text
description = "N-ARY TIMES OPERATOR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 330, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10762", description :: Text
description = "MODULO TWO SUM", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 290, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10763", description :: Text
description = "SUMMATION WITH INTEGRAL", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 290, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10764", description :: Text
description = "QUADRUPLE INTEGRAL OPERATOR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 0, rspace :: Int
rspace = 1, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10765", description :: Text
description = "FINITE PART INTEGRAL", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10766", description :: Text
description = "INTEGRAL WITH DOUBLE STROKE", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10767", description :: Text
description = "INTEGRAL AVERAGE WITH SLASH", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10768", description :: Text
description = "CIRCULATION FUNCTION", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10769", description :: Text
description = "ANTICLOCKWISE INTEGRATION", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10770", description :: Text
description = "LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10771", description :: Text
description = "LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10772", description :: Text
description = "LINE INTEGRATION NOT INCLUDING THE POLE", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10773", description :: Text
description = "INTEGRAL AROUND A POINT OPERATOR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10774", description :: Text
description = "QUATERNION INTEGRAL OPERATOR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10775", description :: Text
description = "INTEGRAL WITH LEFTWARDS ARROW WITH HOOK", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10776", description :: Text
description = "INTEGRAL WITH TIMES SIGN", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10777", description :: Text
description = "INTEGRAL WITH INTERSECTION", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10778", description :: Text
description = "INTEGRAL WITH UNION", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10779", description :: Text
description = "INTEGRAL WITH OVERBAR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10780", description :: Text
description = "INTEGRAL WITH UNDERBAR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 310, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","mirrorable"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10781", description :: Text
description = "JOIN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10782", description :: Text
description = "LARGE LEFT TRIANGLE OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10783", description :: Text
description = "Z NOTATION SCHEMA COMPOSITION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10784", description :: Text
description = "Z NOTATION SCHEMA PIPING", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10785", description :: Text
description = "Z NOTATION SCHEMA PROJECTION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10786", description :: Text
description = "PLUS SIGN WITH SMALL CIRCLE ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10787", description :: Text
description = "PLUS SIGN WITH CIRCUMFLEX ACCENT ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10788", description :: Text
description = "PLUS SIGN WITH TILDE ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10789", description :: Text
description = "PLUS SIGN WITH DOT BELOW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10790", description :: Text
description = "PLUS SIGN WITH TILDE BELOW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10791", description :: Text
description = "PLUS SIGN WITH SUBSCRIPT TWO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10792", description :: Text
description = "PLUS SIGN WITH BLACK TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10793", description :: Text
description = "MINUS SIGN WITH COMMA ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10794", description :: Text
description = "MINUS SIGN WITH DOT BELOW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10795", description :: Text
description = "MINUS SIGN WITH FALLING DOTS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10796", description :: Text
description = "MINUS SIGN WITH RISING DOTS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10797", description :: Text
description = "PLUS SIGN IN LEFT HALF CIRCLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10798", description :: Text
description = "PLUS SIGN IN RIGHT HALF CIRCLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10799", description :: Text
description = "VECTOR OR CROSS PRODUCT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 390, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10800", description :: Text
description = "MULTIPLICATION SIGN WITH DOT ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10801", description :: Text
description = "MULTIPLICATION SIGN WITH UNDERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10802", description :: Text
description = "SEMIDIRECT PRODUCT WITH BOTTOM CLOSED", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10803", description :: Text
description = "SMASH PRODUCT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10804", description :: Text
description = "MULTIPLICATION SIGN IN LEFT HALF CIRCLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10805", description :: Text
description = "MULTIPLICATION SIGN IN RIGHT HALF CIRCLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10806", description :: Text
description = "CIRCLED MULTIPLICATION SIGN WITH CIRCUMFLEX ACCENT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10807", description :: Text
description = "MULTIPLICATION SIGN IN DOUBLE CIRCLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10808", description :: Text
description = "CIRCLED DIVISION SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10809", description :: Text
description = "PLUS SIGN IN TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10810", description :: Text
description = "MINUS SIGN IN TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10811", description :: Text
description = "MULTIPLICATION SIGN IN TRIANGLE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10812", description :: Text
description = "INTERIOR PRODUCT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10813", description :: Text
description = "RIGHTHAND INTERIOR PRODUCT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10814", description :: Text
description = "Z NOTATION RELATIONAL COMPOSITION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10815", description :: Text
description = "AMALGAMATION OR COPRODUCT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 390, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10816", description :: Text
description = "INTERSECTION WITH DOT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10817", description :: Text
description = "UNION WITH MINUS SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10818", description :: Text
description = "UNION WITH OVERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10819", description :: Text
description = "INTERSECTION WITH OVERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10820", description :: Text
description = "INTERSECTION WITH LOGICAL AND", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10821", description :: Text
description = "UNION WITH LOGICAL OR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10822", description :: Text
description = "UNION ABOVE INTERSECTION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10823", description :: Text
description = "INTERSECTION ABOVE UNION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10824", description :: Text
description = "UNION ABOVE BAR ABOVE INTERSECTION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10825", description :: Text
description = "INTERSECTION ABOVE BAR ABOVE UNION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10826", description :: Text
description = "UNION BESIDE AND JOINED WITH UNION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10827", description :: Text
description = "INTERSECTION BESIDE AND JOINED WITH INTERSECTION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10828", description :: Text
description = "CLOSED UNION WITH SERIFS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10829", description :: Text
description = "CLOSED INTERSECTION WITH SERIFS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10830", description :: Text
description = "DOUBLE SQUARE INTERSECTION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10831", description :: Text
description = "DOUBLE SQUARE UNION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10832", description :: Text
description = "CLOSED UNION WITH SERIFS AND SMASH PRODUCT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10833", description :: Text
description = "LOGICAL AND WITH DOT ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10834", description :: Text
description = "LOGICAL OR WITH DOT ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10835", description :: Text
description = "DOUBLE LOGICAL AND", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10836", description :: Text
description = "DOUBLE LOGICAL OR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10837", description :: Text
description = "TWO INTERSECTING LOGICAL AND", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10838", description :: Text
description = "TWO INTERSECTING LOGICAL OR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10839", description :: Text
description = "SLOPING LARGE OR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10840", description :: Text
description = "SLOPING LARGE AND", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10841", description :: Text
description = "LOGICAL OR OVERLAPPING LOGICAL AND", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10842", description :: Text
description = "LOGICAL AND WITH MIDDLE STEM", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10843", description :: Text
description = "LOGICAL OR WITH MIDDLE STEM", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10844", description :: Text
description = "LOGICAL AND WITH HORIZONTAL DASH", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10845", description :: Text
description = "LOGICAL OR WITH HORIZONTAL DASH", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10846", description :: Text
description = "LOGICAL AND WITH DOUBLE OVERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10847", description :: Text
description = "LOGICAL AND WITH UNDERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10848", description :: Text
description = "LOGICAL AND WITH DOUBLE UNDERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10849", description :: Text
description = "SMALL VEE WITH UNDERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10850", description :: Text
description = "LOGICAL OR WITH DOUBLE OVERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10851", description :: Text
description = "LOGICAL OR WITH DOUBLE UNDERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10852", description :: Text
description = "Z NOTATION DOMAIN ANTIRESTRICTION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10853", description :: Text
description = "Z NOTATION RANGE ANTIRESTRICTION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10854", description :: Text
description = "EQUALS SIGN WITH DOT BELOW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10855", description :: Text
description = "IDENTICAL WITH DOT ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10856", description :: Text
description = "TRIPLE HORIZONTAL BAR WITH DOUBLE VERTICAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10857", description :: Text
description = "TRIPLE HORIZONTAL BAR WITH TRIPLE VERTICAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10858", description :: Text
description = "TILDE OPERATOR WITH DOT ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10859", description :: Text
description = "TILDE OPERATOR WITH RISING DOTS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10860", description :: Text
description = "SIMILAR MINUS SIMILAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10861", description :: Text
description = "CONGRUENT WITH DOT ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10862", description :: Text
description = "EQUALS WITH ASTERISK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10863", description :: Text
description = "ALMOST EQUAL TO WITH CIRCUMFLEX ACCENT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10864", description :: Text
description = "APPROXIMATELY EQUAL OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10865", description :: Text
description = "EQUALS SIGN ABOVE PLUS SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10866", description :: Text
description = "PLUS SIGN ABOVE EQUALS SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10867", description :: Text
description = "EQUALS SIGN ABOVE TILDE OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10868", description :: Text
description = "DOUBLE COLON EQUAL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10869", description :: Text
description = "TWO CONSECUTIVE EQUALS SIGNS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10870", description :: Text
description = "THREE CONSECUTIVE EQUALS SIGNS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10871", description :: Text
description = "EQUALS SIGN WITH TWO DOTS ABOVE AND TWO DOTS BELOW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10872", description :: Text
description = "EQUIVALENT WITH FOUR DOTS ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10873", description :: Text
description = "LESS-THAN WITH CIRCLE INSIDE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10874", description :: Text
description = "GREATER-THAN WITH CIRCLE INSIDE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10875", description :: Text
description = "LESS-THAN WITH QUESTION MARK ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10876", description :: Text
description = "GREATER-THAN WITH QUESTION MARK ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10877", description :: Text
description = "LESS-THAN OR SLANTED EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10877\824", description :: Text
description = "LESS-THAN OR SLANTED EQUAL TO with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10878", description :: Text
description = "GREATER-THAN OR SLANTED EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10878\824", description :: Text
description = "GREATER-THAN OR SLANTED EQUAL TO with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10879", description :: Text
description = "LESS-THAN OR SLANTED EQUAL TO WITH DOT INSIDE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10880", description :: Text
description = "GREATER-THAN OR SLANTED EQUAL TO WITH DOT INSIDE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10881", description :: Text
description = "LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10882", description :: Text
description = "GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10883", description :: Text
description = "LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE RIGHT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10884", description :: Text
description = "GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE LEFT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10885", description :: Text
description = "LESS-THAN OR APPROXIMATE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10886", description :: Text
description = "GREATER-THAN OR APPROXIMATE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10887", description :: Text
description = "LESS-THAN AND SINGLE-LINE NOT EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10888", description :: Text
description = "GREATER-THAN AND SINGLE-LINE NOT EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10889", description :: Text
description = "LESS-THAN AND NOT APPROXIMATE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10890", description :: Text
description = "GREATER-THAN AND NOT APPROXIMATE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10891", description :: Text
description = "LESS-THAN ABOVE DOUBLE-LINE EQUAL ABOVE GREATER-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10892", description :: Text
description = "GREATER-THAN ABOVE DOUBLE-LINE EQUAL ABOVE LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10893", description :: Text
description = "LESS-THAN ABOVE SIMILAR OR EQUAL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10894", description :: Text
description = "GREATER-THAN ABOVE SIMILAR OR EQUAL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10895", description :: Text
description = "LESS-THAN ABOVE SIMILAR ABOVE GREATER-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10896", description :: Text
description = "GREATER-THAN ABOVE SIMILAR ABOVE LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10897", description :: Text
description = "LESS-THAN ABOVE GREATER-THAN ABOVE DOUBLE-LINE EQUAL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10898", description :: Text
description = "GREATER-THAN ABOVE LESS-THAN ABOVE DOUBLE-LINE EQUAL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10899", description :: Text
description = "LESS-THAN ABOVE SLANTED EQUAL ABOVE GREATER-THAN ABOVE SLANTED EQUAL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10900", description :: Text
description = "GREATER-THAN ABOVE SLANTED EQUAL ABOVE LESS-THAN ABOVE SLANTED EQUAL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10901", description :: Text
description = "SLANTED EQUAL TO OR LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10902", description :: Text
description = "SLANTED EQUAL TO OR GREATER-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10903", description :: Text
description = "SLANTED EQUAL TO OR LESS-THAN WITH DOT INSIDE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10904", description :: Text
description = "SLANTED EQUAL TO OR GREATER-THAN WITH DOT INSIDE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10905", description :: Text
description = "DOUBLE-LINE EQUAL TO OR LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10906", description :: Text
description = "DOUBLE-LINE EQUAL TO OR GREATER-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10907", description :: Text
description = "DOUBLE-LINE SLANTED EQUAL TO OR LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10908", description :: Text
description = "DOUBLE-LINE SLANTED EQUAL TO OR GREATER-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10909", description :: Text
description = "SIMILAR OR LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10910", description :: Text
description = "SIMILAR OR GREATER-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10911", description :: Text
description = "SIMILAR ABOVE LESS-THAN ABOVE EQUALS SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10912", description :: Text
description = "SIMILAR ABOVE GREATER-THAN ABOVE EQUALS SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10913", description :: Text
description = "DOUBLE NESTED LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10913\824", description :: Text
description = "DOUBLE NESTED LESS-THAN with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10914", description :: Text
description = "DOUBLE NESTED GREATER-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10914\824", description :: Text
description = "DOUBLE NESTED GREATER-THAN with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10915", description :: Text
description = "DOUBLE NESTED LESS-THAN WITH UNDERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10916", description :: Text
description = "GREATER-THAN OVERLAPPING LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10917", description :: Text
description = "GREATER-THAN BESIDE LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10918", description :: Text
description = "LESS-THAN CLOSED BY CURVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10919", description :: Text
description = "GREATER-THAN CLOSED BY CURVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10920", description :: Text
description = "LESS-THAN CLOSED BY CURVE ABOVE SLANTED EQUAL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10921", description :: Text
description = "GREATER-THAN CLOSED BY CURVE ABOVE SLANTED EQUAL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10922", description :: Text
description = "SMALLER THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10923", description :: Text
description = "LARGER THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10924", description :: Text
description = "SMALLER THAN OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10925", description :: Text
description = "LARGER THAN OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10926", description :: Text
description = "EQUALS SIGN WITH BUMPY ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10927", description :: Text
description = "PRECEDES ABOVE SINGLE-LINE EQUALS SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10927\824", description :: Text
description = "PRECEDES ABOVE SINGLE-LINE EQUALS SIGN with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10928", description :: Text
description = "SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10928\824", description :: Text
description = "SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 260, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10929", description :: Text
description = "PRECEDES ABOVE SINGLE-LINE NOT EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10930", description :: Text
description = "SUCCEEDS ABOVE SINGLE-LINE NOT EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10931", description :: Text
description = "PRECEDES ABOVE EQUALS SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10932", description :: Text
description = "SUCCEEDS ABOVE EQUALS SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10933", description :: Text
description = "PRECEDES ABOVE NOT EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10934", description :: Text
description = "SUCCEEDS ABOVE NOT EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10935", description :: Text
description = "PRECEDES ABOVE ALMOST EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10936", description :: Text
description = "SUCCEEDS ABOVE ALMOST EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10937", description :: Text
description = "PRECEDES ABOVE NOT ALMOST EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10938", description :: Text
description = "SUCCEEDS ABOVE NOT ALMOST EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10939", description :: Text
description = "DOUBLE PRECEDES", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10940", description :: Text
description = "DOUBLE SUCCEEDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10941", description :: Text
description = "SUBSET WITH DOT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10942", description :: Text
description = "SUPERSET WITH DOT", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10943", description :: Text
description = "SUBSET WITH PLUS SIGN BELOW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10944", description :: Text
description = "SUPERSET WITH PLUS SIGN BELOW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10945", description :: Text
description = "SUBSET WITH MULTIPLICATION SIGN BELOW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10946", description :: Text
description = "SUPERSET WITH MULTIPLICATION SIGN BELOW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10947", description :: Text
description = "SUBSET OF OR EQUAL TO WITH DOT ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10948", description :: Text
description = "SUPERSET OF OR EQUAL TO WITH DOT ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10949", description :: Text
description = "SUBSET OF ABOVE EQUALS SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10950", description :: Text
description = "SUPERSET OF ABOVE EQUALS SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10951", description :: Text
description = "SUBSET OF ABOVE TILDE OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10952", description :: Text
description = "SUPERSET OF ABOVE TILDE OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10953", description :: Text
description = "SUBSET OF ABOVE ALMOST EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10954", description :: Text
description = "SUPERSET OF ABOVE ALMOST EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10955", description :: Text
description = "SUBSET OF ABOVE NOT EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10956", description :: Text
description = "SUPERSET OF ABOVE NOT EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10957", description :: Text
description = "SQUARE LEFT OPEN BOX OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10958", description :: Text
description = "SQUARE RIGHT OPEN BOX OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10959", description :: Text
description = "CLOSED SUBSET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10960", description :: Text
description = "CLOSED SUPERSET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10961", description :: Text
description = "CLOSED SUBSET OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10962", description :: Text
description = "CLOSED SUPERSET OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10963", description :: Text
description = "SUBSET ABOVE SUPERSET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10964", description :: Text
description = "SUPERSET ABOVE SUBSET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10965", description :: Text
description = "SUBSET ABOVE SUBSET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10966", description :: Text
description = "SUPERSET ABOVE SUPERSET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10967", description :: Text
description = "SUPERSET BESIDE SUBSET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10968", description :: Text
description = "SUPERSET BESIDE AND JOINED BY DASH WITH SUBSET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10969", description :: Text
description = "ELEMENT OF OPENING DOWNWARDS", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10970", description :: Text
description = "PITCHFORK WITH TEE TOP", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10971", description :: Text
description = "TRANSVERSAL INTERSECTION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10973", description :: Text
description = "NONFORKING", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10973\824", description :: Text
description = "NONFORKING with slash", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10974", description :: Text
description = "SHORT LEFT TACK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10975", description :: Text
description = "SHORT DOWN TACK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10976", description :: Text
description = "SHORT UP TACK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10977", description :: Text
description = "PERPENDICULAR WITH S", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10978", description :: Text
description = "VERTICAL BAR TRIPLE RIGHT TURNSTILE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10979", description :: Text
description = "DOUBLE VERTICAL BAR LEFT TURNSTILE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10980", description :: Text
description = "VERTICAL BAR DOUBLE LEFT TURNSTILE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10981", description :: Text
description = "DOUBLE VERTICAL BAR DOUBLE LEFT TURNSTILE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10982", description :: Text
description = "LONG DASH FROM LEFT MEMBER OF DOUBLE VERTICAL", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10983", description :: Text
description = "SHORT DOWN TACK WITH OVERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10984", description :: Text
description = "SHORT UP TACK WITH UNDERBAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10985", description :: Text
description = "SHORT UP TACK ABOVE SHORT DOWN TACK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10986", description :: Text
description = "DOUBLE DOWN TACK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10987", description :: Text
description = "DOUBLE UP TACK", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10988", description :: Text
description = "DOUBLE STROKE NOT SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10989", description :: Text
description = "REVERSED DOUBLE STROKE NOT SIGN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10990", description :: Text
description = "DOES NOT DIVIDE WITH REVERSED NEGATION SLASH", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10991", description :: Text
description = "VERTICAL LINE WITH CIRCLE ABOVE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10992", description :: Text
description = "VERTICAL LINE WITH CIRCLE BELOW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10993", description :: Text
description = "DOWN TACK WITH CIRCLE BELOW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10994", description :: Text
description = "PARALLEL WITH HORIZONTAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10995", description :: Text
description = "PARALLEL WITH TILDE OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10996", description :: Text
description = "TRIPLE VERTICAL BAR BINARY RELATION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10997", description :: Text
description = "TRIPLE VERTICAL BAR WITH HORIZONTAL STROKE", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10998", description :: Text
description = "TRIPLE COLON OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\10999", description :: Text
description = "TRIPLE NESTED LESS-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\11000", description :: Text
description = "TRIPLE NESTED GREATER-THAN", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\11001", description :: Text
description = "DOUBLE-LINE SLANTED LESS-THAN OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\11002", description :: Text
description = "DOUBLE-LINE SLANTED GREATER-THAN OR EQUAL TO", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\11003", description :: Text
description = "TRIPLE SOLIDUS BINARY RELATION", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\11004", description :: Text
description = "LARGE TRIPLE VERTICAL BAR OPERATOR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 330, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\11005", description :: Text
description = "DOUBLE SOLIDUS OPERATOR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 4, rspace :: Int
rspace = 4, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\11006", description :: Text
description = "WHITE VERTICAL BAR", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 265, lspace :: Int
lspace = 3, rspace :: Int
rspace = 3, properties :: [Text]
properties = []}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\11007", description :: Text
description = "N-ARY WHITE VERTICAL BAR", form :: FormType
form = FormType
FPrefix, priority :: Int
priority = 330, lspace :: Int
lspace = 1, rspace :: Int
rspace = 2, properties :: [Text]
properties = ["symmetric","largeop","movablelimits"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\11077", description :: Text
description = "LEFTWARDS QUADRUPLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\11078", description :: Text
description = "RIGHTWARDS QUADRUPLE ARROW", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 270, lspace :: Int
lspace = 5, rspace :: Int
rspace = 5, properties :: [Text]
properties = ["stretchy"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\65079", description :: Text
description = "PRESENTATION FORM FOR VERTICAL LEFT CURLY BRACKET" , form :: FormType
form = FormType
FInfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["stretchy", "accent"]}
, Operator :: Text -> Text -> FormType -> Int -> Int -> Int -> [Text] -> Operator
Operator {oper :: Text
oper = "\65080", description :: Text
description = "PRESENTATION FORM FOR VERTICAL RIGHT CURLY BRACKET", form :: FormType
form = FormType
FInfix, priority :: Int
priority = 880, lspace :: Int
lspace = 0, rspace :: Int
rspace = 0, properties :: [Text]
properties = ["stretchy", "accent"]}]