isFlushableStream

Determines if the given template argument is a flushable stream type, which is any output stream that defines a void flush() method, which should cause any data buffered by the stream or its resources to be flushed. The exact nature of how a flush operates is implementation-dependent.

bool
isFlushableStream
(
StreamType
)
()

Return Value

Type: bool

true if the given argument is a flushable stream.

Meta