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

Tree @769c54f (Download .tar.gz)

optimistic_string_writer.go @769c54fraw · history · blame

package decor

import "io"

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