Module: stdgo.text.tabwriter
Overview
Index
Constants
import stdgo.text.tabwriter.Tabwriter
final alignRight:stdgo.GoUInt = stdgo._internal.text.tabwriter.Tabwriter_alignRight.alignRight
final debug:stdgo.GoUInt = stdgo._internal.text.tabwriter.Tabwriter_debug.debug
final discardEmptyColumns:stdgo.GoUInt = stdgo._internal.text.tabwriter.Tabwriter_discardEmptyColumns.discardEmptyColumns
final escape:Int = stdgo._internal.text.tabwriter.Tabwriter_escape.escape
final filterHTML:UInt = stdgo._internal.text.tabwriter.Tabwriter_filterHTML.filterHTML
final stripEscape:stdgo.GoUInt = stdgo._internal.text.tabwriter.Tabwriter_stripEscape.stripEscape
final tabIndent:stdgo.GoUInt = stdgo._internal.text.tabwriter.Tabwriter_tabIndent.tabIndent
Classes
import stdgo.text.tabwriter.*
class Tabwriter
Package tabwriter implements a write filter (tabwriter.Writer) that
translates tabbed columns in input into properly aligned text.
The package is using the Elastic Tabstops algorithm described at http://nickgravgaard.com/elastictabstops/index.html.
The text/tabwriter package is frozen and is not accepting new features.
Tabwriter function newWriter
function newWriter(_output:stdgo._internal.io.Writer, _minwidth:Int, _tabwidth:Int, _padding:Int, _padchar:UInt, _flags:UInt):stdgo.text.tabwriter.Writer
NewWriter allocates and initializes a new tabwriter.Writer.
The parameters are the same as for the Init function.