terraform-provider-gitea/vendor/github.com/posener/complete/match/match.go

7 lines
210 B
Go
Raw Normal View History

2022-04-03 04:07:16 +00:00
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