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

Tree @339d222 (Download .tar.gz)

optimistic_string_writer.go @339d222raw · history · blame

package decor

import "io"

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