Sha256: a6566d723571c0c2a7de5d01059b0c1ed9f2ede94edaa905cafb3a6c0fe7fa67
Contents?: true
Size: 700 Bytes
Versions: 94
Compression:
Stored size: 700 Bytes
Contents
module Fox # File Store Definition class FXFileStream < FXStream attr_reader :position # # Return an initialized FXFileStream instance. # def initialize(cont=nil) # :yields: theFileStream end # # Open binary data file stream; allocate a buffer of the given _size_ # for the file I/O; the buffer must be at least 16 bytes. Returns # +true+ on success, +false+ on failure. # # ==== Parameters: # # +filename+:: name of the file to open [String] # +save_or_load+:: access mode, either +FXStreamSave+ or +FXStreamLoad+ [Integer] # +size+:: buffer size [Integer] # def open(filename, save_or_load, size=8192); end end end
Version data entries
94 entries across 94 versions & 1 rubygems