# Functions
ContextualWriter returns a writer which is context aware.
ConvertIOError converts an I/O error into common errors.
CopyDataWithContext copies from src to dst similarly to io.Copy but with context control to stop when asked to.
CopyNWithContext copies n bytes from src to dst similarly to io.CopyN but with context control to stop when asked to.
NewByteReader return a byte reader which is context aware.
NewContextualReader returns a reader which is context aware.
NewContextualReaderFrom returns a io.ReaderFrom which is context aware.
ReadAll reads the whole content of src similarly to io.ReadAll but with context control to stop when asked to.
ReadAtMost reads the content of src and at most max bytes.
WriteString writes a string to dst similarly to io.WriteString but with context control to stop when asked to.