class IO::Stream::Buffered

def readable?

@returns [Boolean] True if the stream is readable.
Check if the stream is readable.
def readable?
	super && @io.readable?
end