Method: OpenSSL::Buffering#print
- Defined in:
- lib/openssl/buffering.rb
#print(*args) ⇒ Object
Writes args to the stream.
See IO#print for full details.
450 451 452 453 454 455 |
# File 'lib/openssl/buffering.rb', line 450 def print(*args) s = Buffer.new args.each{ |arg| s << arg.to_s } do_write(s) nil end |