Versions in this module Expand all Collapse all v0 v0.84.1 Aug 5, 2026 v0.84.0 Jul 31, 2026 Changes in this version + type CompiledFunc struct + func (c *CompiledFunc) Call(args map[string]core.Value) (core.Value, error) + func (c *CompiledFunc) Name() string + func (c *CompiledFunc) Params() []Parameter + func (c *CompiledFunc) Resolve(positional []core.Value, named map[string]core.Value) (map[string]core.Value, error) + type Function interface + Call func(args map[string]core.Value) (core.Value, error) + Name func() string + Params func() []Parameter + type Parameter struct + AcceptedKinds []core.ValueKind + Default core.Value + Description string + Name string + func (p Parameter) Named() bool + func (p Parameter) Required() bool + type Registry struct + func GetRegistry() *Registry + func (r *Registry) Get(name string) (*CompiledFunc, bool)