Go to the source code of this file.
Classes | |
class | AbstractWriter |
struct | AbstractWriter::NumericEncoder |
struct | AbstractWriter::StringEncoder |
class | AbstractWriter::VersionUseShiftOperators |
class | NewlineWriter |
Variables | |
module mango io | AbstractWriter |
import mango io | Exception |
import mango io model | IWriter |
import mango io model mango io model | IBuffer |
import mango io model mango io model mango io model | IConduit |
import mango io | FileSystem |
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for damages of any kind arising from the use of this software.
Permission is hereby granted to anyone to use this software for any purpose, including commercial applications, and to alter it and/or redistribute it freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment within documentation of said product would be appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any distribution of the source.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Definition in file AbstractWriter.d.
|
Definition at line 36 of file AbstractWriter.d. |
|
Definition at line 38 of file AbstractWriter.d. |
|
Definition at line 40 of file AbstractWriter.d. |
|
Definition at line 40 of file AbstractWriter.d. |
|
Definition at line 40 of file AbstractWriter.d. |
|
A class to handle newline output. One might reasonable expect to emit a char[] for newlines; FileSystem.NewlineString for example. Turns out that it's much more efficient to intercept line-breaks when they're implemented in a more formal manner (such as this). For example, ColumnWriter() and TextWriter() both must intercept newline output so they can adjust formatting appropriately. It is much more efficient for such writers to intercept the IWritable put() method instead of scanning each char[] for the various \n combinations. Please use the INewlineWriter interface for emitting newlines. Definition at line 683 of file AbstractWriter.d. |