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

Tree @5a08c20 (Download .tar.gz)

optimistic_string_writer.go @5a08c20raw · history · blame

package decor

import "io"

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