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

Tree @3f5e7a5 (Download .tar.gz)

optimistic_string_writer.go @3f5e7a5raw · history · blame

package decor

import "io"

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