mapBigOp function
Large operator symbol mapping
Implementation
String mapBigOp(String op) {
final name = op.trim();
switch (name) {
case "sum":
return "∑";
case "prod":
return "∏";
case "coprod":
return "∐";
case "int":
return "∫";
case "oint":
return "∮";
case "iint":
return "∬";
case "iiint":
return "∭";
case "bigcap":
return "⋂";
case "bigcup":
return "⋃";
case "bigsqcup":
return "⨆";
case "bigvee":
return "⋁";
case "bigwedge":
return "⋀";
case "bigoplus":
return "⨁";
case "bigotimes":
return "⨂";
case "bigodot":
return "⨀";
case "biguplus":
return "⨄";
default:
return name;
}
}