···9898 applyFile
9999)
100100101101+// Apply is a convenience function that creates an Applier for src with default
102102+// settings and applies the changes in f, writing the result to dst.
103103+func Apply(dst io.Writer, src io.ReaderAt, f *File) error {
104104+ return NewApplier(src).ApplyFile(dst, f)
105105+}
106106+101107// Applier applies changes described in fragments to source data. If changes
102108// are described in multiple fragments, those fragments must be applied in
103109// order, usually by calling ApplyFile.