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

Tree @8e0397e (Download .tar.gz)

optimistic_string_writer.go @8e0397eraw · history · blame

package decor

import "io"

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