-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstd.go
More file actions
59 lines (58 loc) · 1.2 KB
/
std.go
File metadata and controls
59 lines (58 loc) · 1.2 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package golang
// common std lib
// cd /usr/local/go/src/ && ls -d */ | cut -f1 -d'/'
var Libs = map[string]byte{
"archive": 0,
"arena": 0,
"bufio": 0,
"builtin": 0,
"bytes": 0,
"cmd": 0,
"cmp": 0,
"compress": 0,
"container": 0,
"context": 0,
"crypto": 0,
"database": 0,
"database/sql": 0,
"debug": 0,
"embed": 0,
"encoding": 0,
"encoding/hex": 0,
"errors": 0,
"expvars": 0,
"flag": 0,
"fmt": 0,
"go": 0,
"hash": 0,
"html": 0,
"image": 0,
"index": 0,
"io": 0,
"log": 0,
"maps": 0,
"math": 0,
"mime": 0,
"net": 0,
"net/netip": 0,
"os": 0,
"path": 0,
"path/filepath": 0,
"plugin": 0,
"reflect": 0,
"regexp": 0,
"runtime": 0,
"slices": 0,
"sort": 0,
"strconv": 0,
"strings": 0,
"sync": 0,
"sync/atomic": 0,
"syscall": 0,
"testing": 0,
"text": 0,
"time": 0,
"unicode": 0,
"unsafe": 0,
"net/http": 0,
}