mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-01-19 21:22:56 -05:00
Updated via: go get github.com/hashicorp/terraform@sdk-v0.11-with-go-modules and go mod tidy
6 lines
210 B
Go
6 lines
210 B
Go
package match
|
|
|
|
// Match matches two strings
|
|
// it is used for comparing a term to the last typed
|
|
// word, the prefix, and see if it is a possible auto complete option.
|
|
type Match func(term, prefix string) bool
|