module RedisClient::RESP3

def parse_sequence(io, size)

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

def parse_sequence: (RedisClient::RubyConnection::BufferedIO io, Integer size) -> untyped

This signature was generated using 2 samples from 1 application.

def parse_sequence(io, size)
  return if size < 0 # RESP2 nil
  array = Array.new(size)
  size.times do |index|
    array[index] = parse(io)
  end
  array
end