Sha256: d1c4fd61eea9a59d4ed444173c5bc00bdd82d84e50702be4b81d82bb453d310f

Contents?: true

Size: 1.45 KB

Versions: 5

Compression:

Stored size: 1.45 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

5 entries across 5 versions & 1 rubygems

Version Path
wxruby3-0.9.7-x64-mingw-ucrt lib/wx/doc/stream.rb
wxruby3-0.9.5-x64-mingw-ucrt lib/wx/doc/stream.rb
wxruby3-0.9.4-x64-mingw-ucrt lib/wx/doc/stream.rb
wxruby3-0.9.3-x64-mingw-ucrt lib/wx/doc/stream.rb
wxruby3-0.9.2-x64-mingw-ucrt lib/wx/doc/stream.rb