pub fn parse_builtin_call(
    ctx: Context,
    params: &[BuiltinParam],
    args: &dyn ArgsLike,
    tailstrict: bool
) -> Result<Vec<Option<Thunk<Val>>>>
Expand description

You shouldn’t probally use this function, use jrsonnet_macros::builtin instead

Parameters

  • ctx: used for passed argument expressions’ execution and for body execution (if body_ctx is not set)
  • params: function parameters’ definition
  • args: passed function arguments
  • tailstrict: if set to true function arguments are eagerly executed, otherwise - lazily