INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Output stream of data in binary format"
project: "Eiffel Kernel Library: input and output"
revision: "$Revision: 1.2 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: kernel
class BINARY_OUTPUT_STREAM
inherit

DATA_OUTPUT
end

MEMORY
end

PROXY_BYTE_OUTPUT_STREAM
end
creation

make
feature -- Output

put_boolean (b: BOOLEAN)
-- Write binary value of 'b' at current position.

put_character (c: CHARACTER)
-- Write 'c' at current position.

put_double (d: DOUBLE)
-- Write binary value of 'd' at current position.

put_integer (i: INTEGER)
-- Write binary value of 'i' at current position.

put_real (r: REAL)
-- Write binary value of 'r' at current position.

put_string (s: STRING)
-- Write 's' at current position.
end -- class BINARY_OUTPUT_STREAM

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES