1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-28 06:42:00 +03:00

feat: add strings function

This commit is contained in:
Stephanie Hingtgen
2021-10-22 08:56:01 -06:00
parent 002143fcee
commit c097317875
2 changed files with 11 additions and 18 deletions

View File

@ -301,20 +301,18 @@ type queryOptions struct {
}
func (o *queryOptions) string(name string) string {
if len(o.q[name]) == 0 {
vs := o.q[name]
if len(vs) == 0 {
return ""
}
// get the first item from the array to return
// and remove it so it isn't processed again
param := o.q[name][0]
o.q[name] = o.q[name][1:]
delete(o.q, name) // enable detection of unknown parameters
return vs[len(vs)-1]
}
// remove the key to enable detection of unknown params
if len(o.q[name]) == 0 {
delete(o.q, name)
}
return param
func (o *queryOptions) strings(name string) []string {
vs := o.q[name]
delete(o.q, name)
return vs
}
func (o *queryOptions) int(name string) int {