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

Tree @854c09a (Download .tar.gz)

optimistic_string_writer.go @854c09araw · history · blame

package decor

import "io"

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