Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for terminateAll (0.09 sec)

  1. src/text/tabwriter/tabwriter.go

    	}
    	b.pos = len(b.buf)
    	b.endChar = 0
    }
    
    // Terminate the current cell by adding it to the list of cells of the
    // current line. Returns the number of cells in that line.
    func (b *Writer) terminateCell(htab bool) int {
    	b.cell.htab = htab
    	line := &b.lines[len(b.lines)-1]
    	*line = append(*line, b.cell)
    	b.cell = cell{}
    	return len(*line)
    }
    
    func (b *Writer) handlePanic(err *error, op string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top