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

Tree @a051cdc (Download .tar.gz)

optimistic_string_writer.go @a051cdcraw · history · blame

package decor

import "io"

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