kubernetes/vendor/sigs.k8s.io/kustomize/kyaml/fn/runtime/runtimeutil/runtimeutil.go

type FunctionFilter

// GetExit returns the error from Run
func (c FunctionFilter) GetExit() error {}

const functionsDirectoryName

// getFunctionScope returns the path of the directory containing the function config,
// or its parent directory if the base directory is named "functions"
func (c *FunctionFilter) getFunctionScope() (string, error) {}

// scope partitions the input nodes into 2 slices.  The first slice contains only Resources
// which are scoped under dir, and the second slice contains the Resources which are not.
func (c *FunctionFilter) scope(dir string, nodes []*yaml.RNode) ([]*yaml.RNode, []*yaml.RNode, error) {}

func (c *FunctionFilter) Filter(nodes []*yaml.RNode) ([]*yaml.RNode, error) {}

func (c *FunctionFilter) setIds(nodes []*yaml.RNode) error {}

func (c *FunctionFilter) copyCommentsAndSyncOrder(nodes []*yaml.RNode) error {}

func (c *FunctionFilter) doResults(r *kio.ByteReader) error {}