module RedisClient::RESP3

def parse_double(io)

Experimental RBS support (using type sampling data from the type_fusion project).

def parse_double: (RedisClient::RubyConnection::BufferedIO io) -> untyped

This signature was generated using 1 sample from 1 application.

def parse_double(io)
  case value = io.gets_chomp
  when "inf"
    Float::INFINITY
  when "-inf"
    -Float::INFINITY
  else
    Float(value)
  end
end