Sha256: b38b61f56aa8600af813544aec4d23ae8718a9e74c449c0cc1c6595d8549c0fe

Contents?: true

Size: 1.4 KB

Versions: 14

Compression:

Stored size: 1.4 KB

Contents

# :stopdoc:
# Copyright (c) 2023 M.J.N. Corino, The Netherlands
#
# This software is released under the MIT license.
# :startdoc:


module Wx

  class InputStream

    # @overload read(size)
    #   Reads max size bytes from stream.
    #   @param [Integer] size max number of bytes to read
    #   @return [String,nil] string with bytes read (nil if none read)
    # @overload read(output)
    #   Reads bytes from stream and writes these to output stream until eof or error.
    #   @param [IO,Wx::OutputStream] output output stream to write to
    #   @return [self]
    def read(*args); end

    #   Reads size bytes from stream (until eof or error).
    #   @param [Integer] size number of bytes to read
    #   @return [String,nil] string with bytes read (nil if none read)
    def read_all(size); end

  end

  class OutputStream

    # @overload write(buffer)
    #   Writes some or all bytes from buffer to stream.
    #   @param [String] buffer string with bytes to write
    #   @return [Integer] number of bytes written
    # @overload write(input)
    #   Write bytes read from input stream (until eof or error)
    #   @param [IO,Wx::InputStream] input input stream to read from
    #   @return [self]
    def write(*args); end

    # Writes bytes from buffer to stream.
    # @param [String] buffer string with bytes to write
    # @return [Integer] number of bytes written
    def write_all(buffer); end

  end

end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
wxruby3-1.3.1 lib/wx/doc/stream.rb
wxruby3-1.3.0 lib/wx/doc/stream.rb
wxruby3-1.2.1 lib/wx/doc/stream.rb
wxruby3-1.2.0 lib/wx/doc/stream.rb
wxruby3-1.1.2 lib/wx/doc/stream.rb
wxruby3-1.1.1 lib/wx/doc/stream.rb
wxruby3-1.1.0 lib/wx/doc/stream.rb
wxruby3-1.0.1 lib/wx/doc/stream.rb
wxruby3-0.9.8 lib/wx/doc/stream.rb
wxruby3-0.9.7 lib/wx/doc/stream.rb
wxruby3-0.9.5 lib/wx/doc/stream.rb
wxruby3-0.9.4 lib/wx/doc/stream.rb
wxruby3-0.9.3 lib/wx/doc/stream.rb
wxruby3-0.9.2 lib/wx/doc/stream.rb