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

Tree @f190441 (Download .tar.gz)

optimistic_string_writer.go @f190441raw · history · blame

package decor

import "io"

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