summaryrefslogtreecommitdiff
path: root/predict_set.go
diff options
context:
space:
mode:
authorEyal Posener <[email protected]>2019-11-14 06:51:44 +0200
committerEyal Posener <[email protected]>2019-11-18 01:05:47 +0200
commit8724aaf18312e54750540a9578e00d61b1c545d8 (patch)
treed3e736b4fb279975bbcc017ae1bad53e454c5773 /predict_set.go
parent05b68ffc813dd10c420993cb1cf927b346c057b8 (diff)
V2
Diffstat (limited to 'predict_set.go')
-rw-r--r--predict_set.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/predict_set.go b/predict_set.go
deleted file mode 100644
index fa4a34a..0000000
--- a/predict_set.go
+++ /dev/null
@@ -1,12 +0,0 @@
-package complete
-
-// PredictSet expects specific set of terms, given in the options argument.
-func PredictSet(options ...string) Predictor {
- return predictSet(options)
-}
-
-type predictSet []string
-
-func (p predictSet) Predict(a Args) []string {
- return p
-}