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

Tree @503091c (Download .tar.gz)

optimistic_string_writer.go @503091craw · history · blame

package decor

import "io"

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