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

Tree @e06a4cc (Download .tar.gz)

optimistic_string_writer.go @e06a4ccraw · history · blame

package decor

import "io"

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