write(*s)
public
Writes s to the stream. If the argument is not a String it will be converted using .to_s
method. Returns the number of bytes written.
# File ext/openssl/lib/openssl/buffering.rb, line 341
def write(*s)
s.inject(0) do |written, str|
do_write(str)
written + str.bytesize
end
end