go/src/bufio/example_test.go

func ExampleWriter() {}

func ExampleWriter_AvailableBuffer() {}

// ExampleWriter_ReadFrom demonstrates how to use the ReadFrom method of Writer.
func ExampleWriter_ReadFrom() {}

// The simplest use of a Scanner, to read standard input as a set of lines.
func ExampleScanner_lines() {}

// Return the most recent call to Scan as a []byte.
func ExampleScanner_Bytes() {}

// Use a Scanner to implement a simple word-count utility by scanning the
// input as a sequence of space-delimited tokens.
func ExampleScanner_words() {}

// Use a Scanner with a custom split function (built by wrapping ScanWords) to validate
// 32-bit decimal input.
func ExampleScanner_custom() {}

// Use a Scanner with a custom split function to parse a comma-separated
// list with an empty final value.
func ExampleScanner_emptyFinalToken() {}

// Use a Scanner with a custom split function to parse a comma-separated
// list with an empty final value but stops at the token "STOP".
func ExampleScanner_earlyStop() {}