class RedisClient::RubyConnection::BufferedIO
def read_chomp(bytes)
Experimental RBS support (using type sampling data from the type_fusion
project).
def read_chomp: (Integer bytes) -> untyped
This signature was generated using 2 samples from 1 application.
def read_chomp(bytes) ensure_remaining(bytes + EOL_SIZE) str = @buffer.byteslice(@offset, bytes) @offset += bytes + EOL_SIZE str end