MCPcopy
hub / github.com/qax-os/excelize / Write

Method Write

file.go:109–112  ·  view source on GitHub ↗

Write provides a function to write to an io.Writer.

(w io.Writer, opts ...Options)

Source from the content-addressed store, hash-verified

107
108// Write provides a function to write to an io.Writer.
109func (f *File) Write(w io.Writer, opts ...Options) error {
110 _, err := f.WriteTo(w, opts...)
111 return err
112}
113
114// WriteTo implements io.WriterTo to write the file.
115func (f *File) WriteTo(w io.Writer, opts ...Options) (int64, error) {

Callers 10

TestChartSizeFunction · 0.95
SaveAsMethod · 0.95
TestZip64Function · 0.45
WriteToBufferMethod · 0.45
writeToZipMethod · 0.45
convertPasswdToKeyFunction · 0.45
hashingFunction · 0.45
genISOPasswdHashFunction · 0.45
TestOpenReaderFunction · 0.45

Calls 1

WriteToMethod · 0.95

Tested by 4

TestChartSizeFunction · 0.76
TestZip64Function · 0.36
TestOpenReaderFunction · 0.36