package strings import ( "context" "github.com/MontFerret/ferret/pkg/runtime/core" "github.com/MontFerret/ferret/pkg/runtime/values" ) /* * Checks whether the pattern search is contained in the string text, using wildcard matching. */ func Like(_ context.Context, args ...core.Value) (core.Value, error) { err := core.ValidateArgs(args, 2, 3) if err != nil { return values.False, err } return values.None, core.Error(core.ErrNotImplemented, "LIKE") }