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

Tree @ff76489 (Download .tar.gz)

optimistic_string_writer.go @ff76489raw · history · blame

package decor

import "io"

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