Codebase list golang-github-vbauerster-mpb / 4f0b214 decor / optimistic_string_writer.go
4f0b214

Tree @4f0b214 (Download .tar.gz)

optimistic_string_writer.go @4f0b214raw · history · blame

package decor

import "io"

func mustWriteString(w io.Writer, s string) {
	_, err := io.WriteString(w, s)
	if err != nil {
		panic(err)
	}
}