type Sequence interface {
// Items returns a channel containing all the sequence items. Items() <-chan string// WidthExceeded returns true if the an out of bounds error has occurred. WidthExceeded() bool
}
Sequence is implemented by types that generate sequence of strings.