-
Notifications
You must be signed in to change notification settings - Fork 547
/
io.go
34 lines (28 loc) · 880 Bytes
/
io.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package io
import (
"io"
)
// -----------------------------------------------------------------------------
// Exports is the export table of this module.
//
var Exports = map[string]interface{}{
"_name": "io",
"copy": io.Copy,
"copyN": io.CopyN,
"readAtLeast": io.ReadAtLeast,
"readFull": io.ReadFull,
"writeString": io.WriteString,
"pipe": io.Pipe,
"limitReader": io.LimitReader,
"multiReader": io.MultiReader,
"multiWriter": io.MultiWriter,
"teeReader": io.TeeReader,
"sectionReader": io.NewSectionReader,
"EOF": io.EOF,
"ErrClosedPipe": io.ErrClosedPipe,
"ErrNoProgress": io.ErrNoProgress,
"ErrShortBuffer": io.ErrShortBuffer,
"ErrShortWrite": io.ErrShortWrite,
"ErrUnexpectedEOF": io.ErrUnexpectedEOF,
}
// -----------------------------------------------------------------------------