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

Tree @75e13fc (Download .tar.gz)

optimistic_string_writer.go @75e13fcraw · history · blame

package decor

import "io"

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