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

Tree @fba920e (Download .tar.gz)

optimistic_string_writer.go @fba920eraw · history · blame

package decor

import "io"

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