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

Tree @3e55caa (Download .tar.gz)

optimistic_string_writer.go @3e55caaraw · history · blame

package decor

import "io"

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