type github.com/go-redis/redis/v8.FloatCmd

27 uses

	github.com/go-redis/redis/v8 (current package)
		command.go#L746: type FloatCmd struct {
		command.go#L752: var _ Cmder = (*FloatCmd)(nil)
		command.go#L754: func NewFloatCmd(ctx context.Context, args ...interface{}) *FloatCmd {
		command.go#L755: 	return &FloatCmd{
		command.go#L763: func (cmd *FloatCmd) Val() float64 {
		command.go#L767: func (cmd *FloatCmd) Result() (float64, error) {
		command.go#L771: func (cmd *FloatCmd) String() string {
		command.go#L775: func (cmd *FloatCmd) readReply(rd *proto.Reader) error {
		commands.go#L116: 	IncrByFloat(ctx context.Context, key string, value float64) *FloatCmd
		commands.go#L146: 	HIncrByFloat(ctx context.Context, key, field string, incr float64) *FloatCmd
		commands.go#L225: 	ZIncr(ctx context.Context, key string, member *Z) *FloatCmd
		commands.go#L226: 	ZIncrNX(ctx context.Context, key string, member *Z) *FloatCmd
		commands.go#L227: 	ZIncrXX(ctx context.Context, key string, member *Z) *FloatCmd
		commands.go#L231: 	ZIncrBy(ctx context.Context, key string, increment float64, member string) *FloatCmd
		commands.go#L251: 	ZScore(ctx context.Context, key, member string) *FloatCmd
		commands.go#L325: 	GeoDist(ctx context.Context, key string, member1, member2, unit string) *FloatCmd
		commands.go#L712: func (c cmdable) IncrByFloat(ctx context.Context, key string, value float64) *FloatCmd {
		commands.go#L1014: func (c cmdable) HIncrByFloat(ctx context.Context, key, field string, incr float64) *FloatCmd {
		commands.go#L1778: func (c cmdable) zIncr(ctx context.Context, a []interface{}, n int, members ...*Z) *FloatCmd {
		commands.go#L1789: func (c cmdable) ZIncr(ctx context.Context, key string, member *Z) *FloatCmd {
		commands.go#L1797: func (c cmdable) ZIncrNX(ctx context.Context, key string, member *Z) *FloatCmd {
		commands.go#L1805: func (c cmdable) ZIncrXX(ctx context.Context, key string, member *Z) *FloatCmd {
		commands.go#L1830: func (c cmdable) ZIncrBy(ctx context.Context, key string, increment float64, member string) *FloatCmd {
		commands.go#L2065: func (c cmdable) ZScore(ctx context.Context, key, member string) *FloatCmd {
		commands.go#L2659: ) *FloatCmd {
		result.go#L62: func NewFloatResult(val float64, err error) *FloatCmd {
		result.go#L63: 	var cmd FloatCmd