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

Tree @f239b65 (Download .tar.gz)

optimistic_string_writer.go @f239b65raw · history · blame

package decor

import "io"

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