github.com/songzhibin97/go-baseutils@v0.0.2-0.20240302024150-487d8ce9c082/structure/sets/zset/opt.go (about) 1 package zset 2 3 // RangeOpt describes the whether the min/max is exclusive in score range. 4 type RangeOpt struct { 5 ExcludeMin bool 6 ExcludeMax bool 7 }