Versions in this module Expand all Collapse all v0 v0.0.1 Oct 16, 2022 Changes in this version + func Contains(s, substr string) bool + func Format(format string, values ...interface{}) string + func HasPrefix(s string, prefix string) bool + func HasSuffix(s, suffix string) bool + func Join(a []string, sep string) string + func Lower(s string) string + func Replace(s, old, new string) string + func Split(s string, sep string) []interface + func Title(s string) string + func TrimPrefix(s string, prefix string) string + func TrimSpace(s string) string + func TrimSuffix(s, suffix string) string + func Upper(s string) string + type ContainsInterpreter struct + func (i ContainsInterpreter) Eval(ctx interface{}, args []interface{}) (interface{}, error) + func (i ContainsInterpreter) Schema() schema.Schema + type FormatInterpreter struct + func (i FormatInterpreter) Eval(ctx interface{}, args []interface{}) (interface{}, error) + func (i FormatInterpreter) Schema() schema.Schema + type HasPrefixInterpreter struct + func (i HasPrefixInterpreter) Eval(ctx interface{}, args []interface{}) (interface{}, error) + func (i HasPrefixInterpreter) Schema() schema.Schema + type HasSuffixInterpreter struct + func (i HasSuffixInterpreter) Eval(ctx interface{}, args []interface{}) (interface{}, error) + func (i HasSuffixInterpreter) Schema() schema.Schema + type JoinInterpreter struct + func (i JoinInterpreter) Eval(ctx interface{}, args []interface{}) (interface{}, error) + func (i JoinInterpreter) Schema() schema.Schema + type LowerInterpreter struct + func (i LowerInterpreter) Eval(ctx interface{}, args []interface{}) (interface{}, error) + func (i LowerInterpreter) Schema() schema.Schema + type ReplaceInterpreter struct + func (i ReplaceInterpreter) Eval(ctx interface{}, args []interface{}) (interface{}, error) + func (i ReplaceInterpreter) Schema() schema.Schema + type SplitInterpreter struct + func (i SplitInterpreter) Eval(ctx interface{}, args []interface{}) (interface{}, error) + func (i SplitInterpreter) Schema() schema.Schema + type TitleInterpreter struct + func (i TitleInterpreter) Eval(ctx interface{}, args []interface{}) (interface{}, error) + func (i TitleInterpreter) Schema() schema.Schema + type TrimPrefixInterpreter struct + func (i TrimPrefixInterpreter) Eval(ctx interface{}, args []interface{}) (interface{}, error) + func (i TrimPrefixInterpreter) Schema() schema.Schema + type TrimSpaceInterpreter struct + func (i TrimSpaceInterpreter) Eval(ctx interface{}, args []interface{}) (interface{}, error) + func (i TrimSpaceInterpreter) Schema() schema.Schema + type TrimSuffixInterpreter struct + func (i TrimSuffixInterpreter) Eval(ctx interface{}, args []interface{}) (interface{}, error) + func (i TrimSuffixInterpreter) Schema() schema.Schema + type UpperInterpreter struct + func (i UpperInterpreter) Eval(ctx interface{}, args []interface{}) (interface{}, error) + func (i UpperInterpreter) Schema() schema.Schema