Added gamma function.

This commit is contained in:
PaddiM8 2020-06-09 15:53:29 +02:00
parent 88d0c7c523
commit e665564a6f

View File

@ -89,12 +89,13 @@ struct RLHelper {
impl Helper for RLHelper {} impl Helper for RLHelper {}
const COMPLETION_FUNCS: phf::Map<&'static str, &'static str> = phf::phf_map! { const COMPLETION_FUNCS: phf::Map<&'static str, &'static str> = phf::phf_map! {
"sqrt" => "", "ceil" => "⌈⌉",
"deg" => "°", "deg" => "°",
"floor" => "⌊⌋", "floor" => "⌊⌋",
"ceil" => "⌈⌉", "gamma" => "Γ",
"(" => "()",
"sum" => "Σ()", "sum" => "Σ()",
"sqrt" => "",
"(" => "()",
}; };
impl Completer for RLHelper { impl Completer for RLHelper {