MCPcopy Create free account
hub / github.com/AmrDeveloper/GQL / register_std_general_functions

Function register_std_general_functions

crates/gitql-std/src/general/mod.rs:21–30  ·  view source on GitHub ↗
(map: &mut HashMap<&'static str, StandardFunction>)

Source from the content-addressed store, hash-verified

19
20#[inline(always)]
21pub fn register_std_general_functions(map: &mut HashMap<&'static str, StandardFunction>) {
22 map.insert("isnull", general_is_null);
23 map.insert("isnumeric", general_is_numeric);
24 map.insert("typeof", general_type_of);
25 map.insert("greatest", general_greatest);
26 map.insert("least", general_least);
27 map.insert("uuid", general_uuid);
28 map.insert("if", general_if);
29 map.insert("ifnull", general_ifnull);
30}
31
32#[inline(always)]
33pub fn register_std_general_function_signatures(map: &mut HashMap<&'static str, Signature>) {

Callers 1

standard_functionsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…