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

Tree @a43b3ae (Download .tar.gz)

optimistic_string_writer.go @a43b3aeraw · history · blame

package decor

import "io"

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