MCPcopy Create free account
hub / github.com/PRQL/prql / FuncCall

Class FuncCall

prqlc/prqlc-parser/src/parser/pr/expr.rs:120–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

118/// Function call.
119#[derive(Debug, PartialEq, Clone, Serialize, Deserialize, JsonSchema)]
120pub struct FuncCall {
121 pub name: Box<Expr>,
122 pub args: Vec<Expr>,
123 #[serde(default, skip_serializing_if = "HashMap::is_empty")]
124 pub named_args: HashMap<String, Expr>,
125}
126
127/// Function called with possibly missing positional arguments.
128/// May also contain environment that is needed to evaluate the body.

Callers 1

func_callFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected