Files
path/in.go
Ian Gulliver f50e6e228c Module split
2023-04-20 18:01:36 +00:00

6 lines
122 B
Go

package path
func In(obj any, path string, matchStr string) (bool, error) {
return opList(obj, path, matchStr, equal)
}