xtd - Reference Guide
0.1.1
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
|
#include <text_writer.h>
Represents a null text writer.
Inherits xtd::io::text_writer.
Public Member Functions | |
void | write (const xtd::ustring &) override |
Writes the specified string value to the text stream. More... | |
Public Member Functions inherited from xtd::io::text_writer | |
virtual void | close () |
Closes the xtd::io::text_reader and releases any system resources associated with the text_reader. More... | |
virtual void | flush () |
Clears all buffers for the current writer and causes any buffered data to be written to the underlying device. More... | |
const xtd::ustring & | new_line () const noexcept |
Gets the line terminator string used by the current text_writer. More... | |
void | new_line (const xtd::ustring &new_line) noexcept |
Sets the line terminator string used by the current text_writer. More... | |
void | write (bool value) |
Writes the specified bool value to the text stream. More... | |
template<typename ... args_t> | |
void | write (const xtd::ustring &fmt, args_t &&... args) noexcept |
Writes the specified arguments with specified format to the text stream. More... | |
void | write (double value) |
Writes the specified double value to the text stream. More... | |
void | write (float value) |
Writes the specified float value to the text stream. More... | |
void | write (int16_t value) |
Writes the specified int16_t value to the text stream. More... | |
void | write (int32_t value) |
Writes the specified int32_t value to the text stream. More... | |
void | write (int64_t value) |
Writes the specified int64_t value to the text stream. More... | |
void | write (int8_t value) |
Writes the specified int8_t value to the text stream. More... | |
void | write (uint16_t value) |
Writes the specified uint16_t value to the text stream. More... | |
void | write (uint32_t value) |
Writes the specified uint32_t value to the text stream. More... | |
void | write (uint64_t value) |
Writes the specified uint64_t value to the text stream. More... | |
void | write (uint8_t value) |
Writes the specified uint8_t value to the text stream. More... | |
template<typename value_t > | |
void | write (value_t value) |
Writes the specified value_t value to the text stream. More... | |
void | write_line () |
Writes new line to the text stream. More... | |
void | write_line (bool value) |
Writes the specified bool value and new line to the text stream. More... | |
template<typename ... args_t> | |
void | write_line (const xtd::ustring &fmt, args_t &&... args) noexcept |
Writes the specified arguments with specified format to the text stream. More... | |
void | write_line (const xtd::ustring &value) |
Writes the specified string value and new line to the text stream. More... | |
void | write_line (double value) |
Writes the specified double value and new line to the text stream. More... | |
void | write_line (float value) |
Writes the specified float value and new line to the text stream. More... | |
void | write_line (int16_t value) |
Writes the specified int16_t value and new line to the text stream. More... | |
void | write_line (int32_t value) |
Writes the specified int32_t value and new line to the text stream. More... | |
void | write_line (int64_t value) |
Writes the specified int64_t value and new line to the text stream. More... | |
void | write_line (int8_t value) |
Writes the specified int8_t value and new line to the text stream. More... | |
void | write_line (uint16_t value) |
Writes the specified uint16_t value and new line to the text stream. More... | |
void | write_line (uint32_t value) |
Writes the specified uint32_t value and new line to the text stream. More... | |
void | write_line (uint64_t value) |
Writes the specified uint64_t value and new line to the text stream. More... | |
void | write_line (uint8_t value) |
Writes the specified uint8_t value and new line to the text stream. More... | |
template<typename value_t > | |
void | write_line (value_t value) |
Writes the specified value_t value and new line to the text stream. More... | |
Public Member Functions inherited from xtd::object | |
object ()=default | |
Create a new instance of the ultimate base class object. More... | |
virtual bool | equals (const object &obj) const noexcept |
Determines whether the specified object is equal to the current object. More... | |
virtual size_t | get_hash_code () const noexcept |
Serves as a hash function for a particular type. More... | |
template<typename object_t > | |
std::unique_ptr< object_t > | memberwise_clone () const |
Gets the type of the current instance. More... | |
virtual xtd::ustring | to_string () const noexcept |
Returns a std::string that represents the current object. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from xtd::io::text_writer | |
static null_text_writer & | null () noexcept |
Provides a text_writer with no backing store that can be written to, but not read from. More... | |
static synchronized_text_writer | synchronised (text_writer &writer) noexcept |
Creates a thread-safe (synchronized) wrapper around the specified text_writer object. More... | |
Static Public Member Functions inherited from xtd::object | |
static bool | equals (const object &object_a, const object &object_b) noexcept |
Determines whether the specified object instances are considered equal. More... | |
static bool | reference_equals (const object &object_a, const object &object_b) noexcept |
Determines whether the specified object instances are the same instance. More... | |
Protected Attributes inherited from xtd::io::text_writer | |
xtd::ustring | new_line_ |
Protected Member Functions inherited from xtd::io::text_writer | |
text_writer ()=default | |
Initializes a new instance of the xtd::io::text_writer class. More... | |
|
overridevirtual |
Writes the specified string value to the text stream.
value | The value to write. |
io::io_exception | An I/O error occurs. |
Reimplemented from xtd::io::text_writer.