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

Tree @39977d9 (Download .tar.gz)

optimistic_string_writer.go @39977d9raw · history · blame

package decor

import "io"

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