MCPcopy
hub / github.com/github/git-sizer / Println

Function Println

internal/pipe/print.go:19–27  ·  view source on GitHub ↗
(a ...interface{})

Source from the content-addressed store, hash-verified

17}
18
19func Println(a ...interface{}) Stage {
20 return Function(
21 "println",
22 func(_ context.Context, _ Env, _ io.Reader, stdout io.Writer) error {
23 _, err := fmt.Fprintln(stdout, a...)
24 return err
25 },
26 )
27}
28
29func Printf(format string, a ...interface{}) Stage {
30 return Function(

Callers 2

TestPrintlnFunction · 0.92
BenchmarkTenFunctionsFunction · 0.92

Calls 1

FunctionFunction · 0.85

Tested by 2

TestPrintlnFunction · 0.74
BenchmarkTenFunctionsFunction · 0.74