aicra/implement/arguments.go

8 lines
147 B
Go
Raw Normal View History

2018-06-03 12:48:10 +00:00
package implement
// Checks whether a key exists in the arguments
func (i Arguments) Has(key string) bool {
_, exists := i[key]
return exists
}