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

Tree @71608c0 (Download .tar.gz)

optimistic_string_writer.go @71608c0raw · history · blame

package decor

import "io"

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