LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 // The tabwriter package implements a write filter (tabwriter.Writer) | 5 // Package tabwriter implements a write filter (tabwriter.Writer) that |
6 // that translates tabbed columns in input into properly aligned text. | 6 // translates tabbed columns in input into properly aligned text. |
7 // | 7 // |
8 // The package is using the Elastic Tabstops algorithm described at | 8 // The package is using the Elastic Tabstops algorithm described at |
9 // http://nickgravgaard.com/elastictabstops/index.html. | 9 // http://nickgravgaard.com/elastictabstops/index.html. |
10 // | 10 // |
11 package tabwriter | 11 package tabwriter |
12 | 12 |
13 import ( | 13 import ( |
14 "bytes" | 14 "bytes" |
15 "io" | 15 "io" |
16 "os" | 16 "os" |
(...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
577 return | 577 return |
578 } | 578 } |
579 | 579 |
580 | 580 |
581 // NewWriter allocates and initializes a new tabwriter.Writer. | 581 // NewWriter allocates and initializes a new tabwriter.Writer. |
582 // The parameters are the same as for the the Init function. | 582 // The parameters are the same as for the the Init function. |
583 // | 583 // |
584 func NewWriter(output io.Writer, minwidth, tabwidth, padding int, padchar byte,
flags uint) *Writer { | 584 func NewWriter(output io.Writer, minwidth, tabwidth, padding int, padchar byte,
flags uint) *Writer { |
585 return new(Writer).Init(output, minwidth, tabwidth, padding, padchar, fl
ags) | 585 return new(Writer).Init(output, minwidth, tabwidth, padding, padchar, fl
ags) |
586 } | 586 } |
LEFT | RIGHT |