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

Tree @b769685 (Download .tar.gz)

optimistic_string_writer.go @b769685raw · history · blame

package decor

import "io"

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