module RedisClient::RESP3

def parse(io)

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

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

This signature was generated using 4 samples from 1 application.

def parse(io)
  type = io.getbyte
  method = PARSER_TYPES.fetch(type) do
    raise UnknownType, "Unknown sigil type: #{type.chr.inspect}"
  end
  send(method, io)
end