filter

package
v1.26.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 13, 2023 License: MIT Imports: 2 Imported by: 87

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Filter

type Filter interface {
	Match(string) bool
}

func Compile

func Compile(filters []string) (Filter, error)

Compile takes a list of string filters and returns a Filter interface for matching a given string against the filter list. The filter list supports glob matching too, ie:

f, _ := Compile([]string{"cpu", "mem", "net*"})
f.Match("cpu")     // true
f.Match("network") // true
f.Match("memory")  // false

func MustCompile added in v1.24.0

func MustCompile(filters []string) Filter

func NewIncludeExcludeFilter

func NewIncludeExcludeFilter(
	include []string,
	exclude []string,
) (Filter, error)

func NewIncludeExcludeFilterDefaults added in v1.19.0

func NewIncludeExcludeFilterDefaults(
	include []string,
	exclude []string,
	includeDefault bool,
	excludeDefault bool,
) (Filter, error)

type IncludeExcludeFilter

type IncludeExcludeFilter struct {
	// contains filtered or unexported fields
}

func (*IncludeExcludeFilter) Match

func (f *IncludeExcludeFilter) Match(s string) bool

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL