Overview
Statistics (detailed ones)
	Total 277 packages analyzed and 1324 Go files
	(460393 lines of code) parsed. On average,
	* each Go source file imports 2.94 packages
	  and contains 348 lines of code.
	* each package depends on 6.69 other packages,
	  contains 4.99 source code files, and exports
	  - 5.02 type names,
	  - 1.93 variables,
	  - 19.63 constants,
	  - 7.96 functions.
All Packages (sort packages by:  |  |  | )
1. archive/tar (0) (3032) (13) (5) - implements access to tar archives.
2. archive/zip (0) (2179) (13) (5) - provides support for reading and writing ZIP archives.
3. arena (1) (108) (5) (2) - The arena package provides the ability to allocate memory for a collection of Go values and free that space manually all at once, safely.
4. bufio (37) (1261) (8) (1) - implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O.
5. builtin (276) (309) (2) (5)
6. bytes (64) (2037) (7) (1) - implements functions for the manipulation of byte slices.
7. cmp (2) (59) (1) (1) - provides types and functions related to comparing ordered values.
8. compress/bzip2 (0) (874) (9) (5) - implements bzip2 decompression.
9. compress/flate (3) (3216) (12) (1) - implements the DEFLATE compressed data format, described in RFC 1951.
10. compress/gzip (3) (540) (13) (2) - implements reading and writing of gzip format compressed files, as specified in RFC 1952.
11. compress/lzw (1) (583) (12) (1) - implements the Lempel-Ziv-Welch compressed data format, described in T. A. Welch, “A Technique for High-Performance Data Compression”, Computer, 17(6) (June 1984), pp 8-19.
12. compress/zlib (4) (374) (13) (1) - implements reading and writing of zlib format compressed data, as specified in RFC 1950.
13. container/heap (2) (118) (6) (1) - provides heap operations for any type that implements heap.Interface.
14. container/list (3) (235) (1) (2) - implements a doubly linked list.
15. container/ring (0) (136) (1) (5) - implements operations on circular lists.
16. context (19) (785) (9) (1) - defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes.
17. crypto (11) (223) (8) (2) - collects common cryptographic constants.
18. crypto/aes (3) (965) (11) (2) - implements AES encryption (formerly Rijndael), as defined in U.S. Federal Information Processing Standards Publication 197.
19. crypto/cipher (8) (985) (9) (2) - implements standard block cipher modes that can be wrapped around low-level block cipher implementations.
20. crypto/des (2) (556) (10) (2) - implements the Data Encryption Standard (DES) and the Triple Data Encryption Algorithm (TDEA) as defined in U.S. Federal Information Processing Standards Publication 46-3.
21. crypto/dsa (1) (309) (13) (2) - implements the Digital Signature Algorithm, as defined in FIPS 186-3.
22. crypto/ecdh (3) (599) (12) (2) - implements Elliptic Curve Diffie-Hellman over NIST curves and Curve25519.
23. crypto/ecdsa (2) (893) (15) (2) - implements the Elliptic Curve Digital Signature Algorithm, as defined in FIPS 186-4 and SEC 1, Version 2.0.
24. crypto/ed25519 (2) (344) (14) (2) - implements the Ed25519 signature algorithm.
25. crypto/elliptic (3) (937) (13) (2) - implements the standard NIST P-224, P-256, P-384, and P-521 elliptic curves over prime fields.
26. crypto/hmac (3) (180) (11) (1) - implements the Keyed-Hash Message Authentication Code (HMAC) as defined in U.S. Federal Information Processing Standards Publication 198.
27. crypto/internal/alias (4) (30) (2) (3) - implements memory aliasing tests.
28. crypto/internal/bigmod (2) (798) (13) (3)
29. crypto/internal/boring (10) (141) (10) (2) - provides access to BoringCrypto implementation functions.
30. crypto/internal/boring/bbig (2) (33) (13) (3)
31. crypto/internal/boring/bcache (0) (140) (3) (5) - implements a GC-friendly cache (see [Cache]) for BoringCrypto.
32. crypto/internal/boring/sig (1) (17) (1) (3) - holds “code signatures” that can be called and will result in certain code sequences being linked into the final binary.
33. crypto/internal/edwards25519 (1) (2281) (10) (3) - implements group logic for the twisted Edwards curve
34. crypto/internal/edwards25519/field (2) (712) (9) (3) - implements fast arithmetic modulo 2^255-19.
35. crypto/internal/nistec (3) (2453) (11) (3) - implements the NIST P elliptic curves from FIPS 186-4.
36. crypto/internal/nistec/fiat (1) (12336) (6) (4)
37. crypto/internal/randutil (5) (38) (7) (3) - contains internal randomness utilities for various crypto packages.
38. crypto/md5 (7) (320) (9) (1) - implements the MD5 hash algorithm as defined in RFC 1321.
39. crypto/rand (5) (279) (13) (2) - implements a cryptographically secure random number generator.
40. crypto/rc4 (1) (80) (7) (2) - implements RC4 encryption, as defined in Bruce Schneier's Applied Cryptography.
41. crypto/rsa (2) (1572) (14) (2) - implements RSA encryption as specified in PKCS #1 and RFC 8017.
42. crypto/sha1 (2) (401) (9) (2) - implements the SHA-1 hash algorithm as defined in RFC 3174.
43. crypto/sha256 (3) (423) (11) (2) - implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-4.
44. crypto/sha512 (4) (553) (11) (2) - implements the SHA-384, SHA-512, SHA-512/224, and SHA-512/256 hash algorithms as defined in FIPS 180-4.
45. crypto/subtle (13) (96) (1) (2) - implements functions that are often useful in cryptographic code but require careful thought to use correctly.
46. crypto/tls (5) (12271) (17) (1) - partially implements TLS 1.2, as specified in RFC 5246, and TLS 1.3, as specified in RFC 8446.
47. crypto/x509 (2) (6058) (16) (1) - implements a subset of the X.509 standard.
48. crypto/x509/pkix (1) (320) (14) (2) - contains shared, low level structures used for ASN.1 parsing and serialization of X.509 certificates, CRL and OCSP.
49. database/sql (0) (4240) (13) (5) - provides a generic interface around SQL (or SQL-like) databases.
50. database/sql/driver (1) (849) (12) (1) - defines interfaces to be implemented by database drivers as used by package sql.
51. debug/buildinfo (0) (432) (15) (5) - provides access to information embedded in a Go binary about how it was built.
52. debug/dwarf (4) (4486) (12) (2) - provides access to DWARF debugging information loaded from executable files, as defined in the DWARF 2.0 Standard at http://dwarfstd.org/doc/dwarf-2.0.0.pdf.
53. debug/elf (2) (5384) (14) (1) - implements access to ELF object files.
54. debug/gosym (0) (1469) (12) (5) - implements access to the Go symbol and line number tables embedded in Go binaries generated by the gc compilers.
55. debug/macho (1) (1401) (14) (1) - implements access to Mach-O object files.
56. debug/pe (1) (1221) (14) (1) - implements access to PE (Microsoft Windows Portable Executable) files.
57. debug/plan9obj (1) (376) (12) (1) - implements access to Plan 9 a.out object files.
58. embed (1) (448) (10) (4) - provides access to files embedded in the running Go program.
59. embed/internal/embedtest (0) (0) (1) (5)
60. encoding (5) (54) (1) (1) - defines interfaces shared by other packages that convert data to and from byte-level and textual representations.
61. encoding/ascii85 (0) (307) (7) (5) - implements the ascii85 data encoding as used in the btoa tool and Adobe's PostScript and PDF document formats.
62. encoding/asn1 (3) (2057) (13) (2) - implements parsing of DER-encoded ASN.1 data structures, as defined in ITU-T Rec X.690.
63. encoding/base32 (0) (552) (7) (5) - implements base32 encoding as specified by RFC 4648.
64. encoding/base64 (6) (630) (9) (1) - implements base64 encoding as specified by RFC 4648.
65. encoding/binary (46) (991) (8) (1) - implements simple translation between numbers and byte sequences and encoding and decoding of varints.
66. encoding/csv (0) (647) (12) (5) - reads and writes comma-separated values (CSV) files.
67. encoding/gob (1) (4698) (12) (2) - manages streams of gobs - binary values exchanged between an Encoder (transmitter) and a Decoder (receiver).
68. encoding/hex (2) (335) (12) (2) - implements hexadecimal encoding and decoding.
69. encoding/json (6) (4173) (12) (1) - implements encoding and decoding of JSON as defined in RFC 7159.
70. encoding/pem (2) (316) (10) (2) - implements the PEM data encoding, which originated in Privacy Enhanced Mail.
71. encoding/xml (0) (4345) (12) (5) - implements a simple XML 1.0 parser that understands XML name spaces.
72. errors (119) (276) (5) (1) - implements functions to manipulate errors.
73. expvar (0) (373) (20) (5) - provides a standardized interface to public variables, such as operation counters in servers.
74. flag (4) (1231) (12) (1) - implements command-line flag parsing.
75. fmt (107) (3519) (11) (1) - implements formatted I/O with functions analogous to C's printf and scanf.
76. go/ast (9) (3148) (14) (1) - declares the types used to represent syntax trees for Go packages.
77. go/build (3) (2849) (17) (1) - gathers information about Go packages.
78. go/build/constraint (3) (679) (8) (2) - implements parsing and evaluation of build constraint lines.
79. go/constant (4) (1438) (13) (2) - implements Values representing untyped Go constants and their corresponding operations.
80. go/doc (1) (2684) (15) (2) - extracts source code documentation from a Go AST.
81. go/doc/comment (2) (2327) (12) (2) - implements parsing and reformatting of Go doc comments, (documentation comments), which are comments that immediately precede a top-level declaration of a package, const, func, type, or var.
82. go/format (0) (309) (17) (5) - implements standard formatting of Go source.
83. go/importer (0) (122) (19) (5) - provides access to export data importers.
84. go/internal/gccgoimporter (1) (1812) (18) (1) - implements Import for gccgo-generated object files.
85. go/internal/gcimporter (1) (1997) (18) (1) - implements Import for gc-generated object files.
86. go/internal/srcimporter (1) (269) (18) (1) - implements importing directly from source files rather than installed packages.
87. go/internal/typeparams (2) (54) (15) (2)
88. go/parser (5) (3732) (16) (1) - implements a parser for Go source files.
89. go/printer (1) (3762) (15) (1) - implements printing of AST nodes.
90. go/scanner (3) (1078) (13) (2) - implements a scanner for Go source text.
91. go/token (17) (976) (12) (1) - defines constants representing the lexical tokens of the Go programming language and basic operations on tokens (printing, predicates).
92. go/types (4) (21385) (17) (1) - declares the data types and implements the algorithms for type-checking of Go packages.
93. hash (18) (58) (7) (1) - provides interfaces for hash functions.
94. hash/adler32 (1) (135) (8) (2) - implements the Adler-32 checksum.
95. hash/crc32 (3) (579) (8) (1) - implements the 32-bit cyclic redundancy check, or CRC-32, checksum.
96. hash/crc64 (0) (226) (8) (5) - implements the 64-bit cyclic redundancy check, or CRC-64, checksum.
97. hash/fnv (0) (371) (8) (5) - implements FNV-1 and FNV-1a, non-cryptographic hash functions created by Glenn Fowler, Landon Curt Noll, and Phong Vo.
98. hash/maphash (0) (320) (2) (5) - provides hash functions on byte sequences.
99. html (2) (2479) (8) (1) - provides functions for escaping and unescaping HTML text.
100. html/template (1) (4584) (14) (2) - (html/template) implements data-driven templates for generating HTML output safe against code injection.
101. image (5) (2086) (9) (1) - implements a basic 2-D image library.
102. image/color (6) (720) (1) (1) - implements a basic color library.
103. image/color/palette (1) (511) (2) (1) - provides standard color palettes.
104. image/draw (1) (1086) (11) (1) - provides image composition functions.
105. image/gif (0) (1118) (13) (5) - implements a GIF image decoder and encoder.
106. image/internal/imageutil (2) (276) (10) (1) - contains code shared by image-related packages.
107. image/jpeg (0) (2609) (11) (5) - implements a JPEG image decoder and encoder.
108. image/png (0) (1798) (14) (5) - implements a PNG image decoder and encoder.
109. index/suffixarray (0) (3021) (10) (5) - implements substring search in logarithmic time using an in-memory suffix array.
110. internal/abi (4) (1201) (2) (2)
111. internal/bisect (1) (795) (5) (2) - can be used by compilers and other programs to serve as a target for the bisect debugging tool.
112. internal/buildcfg (1) (443) (12) (2) - provides access to the build configuration described by the current environment.
113. internal/bytealg (9) (304) (2) (2)
114. internal/cfg (1) (70) (1) (1) - holds configuration shared by the Go command and internal/testenv.
115. internal/coverage (8) (541) (1) (1)
116. internal/coverage/calloc (1) (29) (1) (1)
117. internal/coverage/cformat (1) (352) (13) (1)
118. internal/coverage/cmerge (2) (127) (12) (1)
119. internal/coverage/decodecounter (1) (373) (14) (1)
120. internal/coverage/decodemeta (1) (359) (14) (1)
121. internal/coverage/encodecounter (1) (297) (14) (1)
122. internal/coverage/encodemeta (1) (347) (14) (1)
123. internal/coverage/pods (1) (197) (12) (1)
124. internal/coverage/rtcov (2) (34) (1) (1)
125. internal/coverage/slicereader (3) (123) (12) (2)
126. internal/coverage/slicewriter (1) (80) (12) (2)
127. internal/coverage/stringtab (4) (139) (13) (2)
128. internal/coverage/test (0) (0) (1) (5)
129. internal/coverage/uleb128 (3) (20) (1) (2)
130. internal/cpu (12) (412) (1) (2) - implements processor feature detection used by the Go standard library.
131. internal/dag (0) (377) (12) (5) - implements a language for expressing directed acyclic graphs.
132. internal/diff (0) (261) (12) (5)
133. internal/fmtsort (2) (219) (8) (2) - provides a general stable ordering mechanism for maps, on behalf of the fmt and text/template packages.
134. internal/fuzz (1) (4008) (17) (1) - provides common fuzzing functionality for tests built with "go test" and for programs that use fuzzing functionality in the testing package.
135. internal/goarch (7) (105) (1) (2) - package goarch contains GOARCH-specific constants.
136. internal/godebug (12) (290) (6) (1) - makes the settings in the $GODEBUG environment variable available to other packages.
137. internal/godebugs (3) (68) (1) (1) - provides a table of known GODEBUG settings, for use by a variety of other packages, including internal/godebug, runtime, runtime/metrics, and cmd/go/internal/load.
138. internal/goexperiment (3) (229) (1) (2) - implements support for toolchain experiments.
139. internal/goos (2) (41) (1) (2) - package goos contains GOOS-specific constants.
140. internal/goroot (1) (131) (13) (2)
141. internal/goversion (2) (12) (1) (2)
142. internal/intern (1) (137) (7) (3) - lets you make smaller comparable values by boxing a larger comparable value (such as a 16 byte string header) down into a globally unique 8 byte pointer.
143. internal/itoa (5) (33) (1) (2)
144. internal/lazyregexp (2) (78) (11) (2) - is a thin wrapper over regexp, allowing the use of global regexp variables without forcing them to be compiled at init.
145. internal/lazytemplate (0) (52) (14) (5) - is a thin wrapper over text/template, allowing the use of global template variables without forcing them to be parsed at init.
146. internal/nettrace (2) (46) (1) (2) - contains internal hooks for tracing activity in the net package.
147. internal/obscuretestdata (0) (65) (11) (5) - contains functionality used by tests to more easily work with testdata that must be obscured primarily due to golang.org/issue/34986.
148. internal/oserror (2) (18) (6) (2) - defines errors values used in the os package.
149. internal/pkgbits (1) (1312) (14) (2) - implements low-level coding abstractions for Unified IR's export data format.
150. internal/platform (2) (400) (1) (1)
151. internal/poll (2) (2192) (9) (2) - supports non-blocking I/O on file descriptors with polling.
152. internal/profile (1) (3435) (14) (1) - provides a representation of github.com/google/pprof/proto/profile.proto and methods to encode/decode/merge profiles in this format.
153. internal/race (3) (54) (2) (2) - contains helper functions for manually instrumenting code for the race detector.
154. internal/reflectlite (4) (1215) (4) (2) - implements lightweight version of reflect, not using any package except for "runtime", "unsafe", and "internal/abi"
155. internal/safefilepath (2) (44) (6) (2) - manipulates operating-system file paths.
156. internal/saferio (8) (135) (8) (1) - provides I/O functions that avoid allocating large amounts of memory unnecessarily.
157. internal/singleflight (1) (123) (5) (2) - provides a duplicate function call suppression mechanism.
158. internal/syscall/execenv (2) (19) (8) (2)
159. internal/syscall/unix (5) (342) (8) (2)
160. internal/sysinfo (1) (31) (5) (2) - implements high level hardware information gathering that can be used for debugging or information purposes.
161. internal/testenv (0) (826) (14) (5) - provides information about what functionality is available in different testing environments run by the Go team.
162. internal/testlog (2) (102) (5) (1) - provides a back-channel communication path between tests and package os, so that cmd/go can see which environment variables and files a test consults.
163. internal/testpty (0) (51) (12) (5) - is a simple pseudo-terminal package for Unix systems, implemented by calling C functions via cgo.
164. internal/trace (0) (2915) (13) (5)
165. internal/txtar (0) (140) (12) (5) - implements a trivial text-based file archive format.
166. internal/types/errors (1) (1676) (7) (2)
167. internal/unsafeheader (2) (37) (2) (2) - contains header declarations for the Go runtime's slice and string implementations.
168. internal/xcoff (2) (1290) (13) (1) - implements access to XCOFF (Extended Common Object File Format) files.
169. internal/zstd (1) (2193) (12) (2) - provides a decompressor for zstd streams, described in RFC 8878.
170. io (120) (1061) (6) (1) - provides basic interfaces to I/O primitives.
171. io/fs (17) (920) (9) (1) - defines basic interfaces to a file system.
172. io/ioutil (2) (136) (11) (1) - implements some I/O utility functions.
173. log (12) (458) (12) (1) - implements a simple logging package.
174. log/internal (2) (12) (1) (2) - contains definitions used by both log and log/slog.
175. log/slog (3) (2729) (13) (1) - provides structured logging, in which log records include a message, a severity level, and various other attributes expressed as key-value pairs.
176. log/slog/internal (1) (9) (1) (2)
177. log/slog/internal/benchmarks (0) (198) (14) (5) - contains benchmarks for slog.
178. log/slog/internal/buffer (2) (84) (5) (1) - provides a pool-allocated byte buffer.
179. log/slog/internal/slogtest (0) (18) (14) (5) - contains support functions for testing slog.
180. log/syslog (0) (364) (13) (5) - provides a simple interface to the system log service.
181. maps (0) (66) (1) (5) - defines various functions useful with maps of any type.
182. math (33) (6027) (3) (1) - provides basic constants and mathematical functions.
183. math/big (14) (9404) (12) (2) - implements arbitrary-precision arithmetic (big numbers).
184. math/bits (26) (694) (2) (1) - implements bit counting and manipulation functions for the predeclared unsigned integer types.
185. math/cmplx (0) (1131) (4) (5) - provides basic constants and mathematical functions for complex numbers.
186. math/rand (6) (1253) (7) (1) - implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work.
187. mime (4) (1184) (12) (1) - implements parts of the MIME spec.
188. mime/multipart (1) (1009) (14) (2) - implements MIME multipart parsing, as defined in RFC 2046.
189. mime/quotedprintable (1) (311) (12) (3) - implements quoted-printable encoding as specified by RFC 2045.
190. net (17) (11619) (11) (1) - provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets.
191. net/http (8) (25472) (19) (1) - provides HTTP client and server implementations.
192. net/http/cgi (1) (635) (20) (1) - implements CGI (Common Gateway Interface) as specified in RFC 3875.
193. net/http/cookiejar (0) (691) (20) (5) - implements an in-memory RFC 6265-compliant http.CookieJar.
194. net/http/fcgi (0) (672) (21) (5) - implements the FastCGI protocol.
195. net/http/httptest (0) (730) (20) (5) - provides utilities for HTTP testing.
196. net/http/httptrace (2) (255) (18) (1) - provides mechanisms to trace the events within HTTP client requests.
197. net/http/httputil (0) (1643) (20) (5) - provides HTTP utility functions, complementing the more common ones in the net/http package.
198. net/http/internal (2) (262) (12) (1) - contains HTTP internals shared by net/http and net/http/httputil.
199. net/http/internal/ascii (3) (61) (8) (1)
200. net/http/internal/testcert (1) (65) (8) (1) - contains a test-only localhost certificate.
201. net/http/pprof (0) (464) (20) (5) - serves via its HTTP server runtime profiling data in the format expected by the pprof visualization tool.
202. net/internal/socktest (0) (491) (12) (5) - provides utilities for socket testing.
203. net/mail (0) (911) (13) (5) - implements parsing of mail messages.
204. net/netip (1) (1617) (8) (2) - defines an IP address type that's a small value type.
205. net/rpc (1) (1138) (20) (1) - provides access to the exported methods of an object across a network or other I/O connection.
206. net/rpc/jsonrpc (0) (258) (21) (5) - implements a JSON-RPC 1.0 ClientCodec and ServerCodec for the rpc package.
207. net/smtp (0) (541) (18) (5) - implements the Simple Mail Transfer Protocol as defined in RFC 5321.
208. net/textproto (9) (1267) (12) (1) - implements generic support for text-based request/response protocols in the style of HTTP, NNTP, and SMTP.
209. net/url (8) (1265) (12) (1) - parses URLs and implements query escaping.
210. os (63) (3992) (10) (1) - provides a platform-independent interface to operating system functionality.
211. os/exec (10) (1409) (12) (1) - runs external commands.
212. os/exec/internal/fdtest (0) (19) (8) (5) - provides test helpers for working with file descriptors across exec.
213. os/signal (1) (628) (11) (1) - implements access to incoming signals.
214. os/user (1) (591) (12) (1) - allows user account lookups by name or id.
215. path (11) (463) (6) (1) - implements utility routines for manipulating slash-separated paths.
216. path/filepath (23) (1260) (11) (1) - implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths.
217. plugin (0) (137) (6) (5) - implements loading and symbol resolution of Go plugins.
218. reflect (29) (8022) (7) (1) - implements run-time reflection, allowing a program to manipulate objects with arbitrary types.
219. reflect/internal/example1 (0) (10) (1) (5)
220. reflect/internal/example2 (0) (10) (1) (5)
221. regexp (6) (2734) (9) (1) - implements regular expression search.
222. regexp/syntax (1) (3558) (8) (2) - parses regular expressions into parse trees and compiles parse trees into programs.
223. runtime (48) (62759) (3) (1) - contains operations that interact with Go's runtime system, such as functions to control goroutines.
224. runtime/coverage (0) (1171) (15) (5)
225. runtime/debug (2) (573) (12) (1) - contains facilities for programs to debug themselves while they are running.
226. runtime/internal/atomic (2) (823) (2) (1) - provides atomic operations, independent of sync/atomic, to the runtime.
227. runtime/internal/math (1) (40) (2) (2)
228. runtime/internal/startlinetest (0) (13) (1) (5) - contains helpers for runtime_test.TestStartLineAsm.
229. runtime/internal/sys (1) (304) (2) (2) - package sys contains system- and configuration- and architecture-specific constants used by the runtime.
230. runtime/internal/syscall (1) (91) (2) (2) - provides the syscall primitives required for the runtime.
231. runtime/internal/wasitest (0) (0) (1) (5)
232. runtime/metrics (0) (998) (4) (5) - provides a stable interface to access implementation-defined metrics exported by the Go runtime.
233. runtime/pprof (2) (2348) (14) (1) - writes runtime profiling data in the format expected by the pprof visualization tool.
234. runtime/race (0) (18) (2) (5) - implements data race detection logic.
235. runtime/race/internal/amd64v1 (1) (10) (1) (1)
236. runtime/trace (2) (352) (12) (1) - contains facilities for programs to generate traces for the Go execution tracer.
237. slices (1) (1650) (3) (2) - defines various functions useful with slices of any type.
238. sort (51) (1390) (5) (1) - provides primitives for sorting slices and user-defined collections.
239. strconv (73) (5292) (6) (1) - implements conversions to and from string representations of basic data types.
240. strings (84) (2341) (7) (1) - implements simple functions to manipulate UTF-8 encoded strings.
241. sync (80) (2123) (4) (1) - provides basic synchronization primitives such as mutual exclusion locks.
242. sync/atomic (28) (586) (2) (1) - provides low-level atomic memory primitives useful for implementing synchronization algorithms.
243. syscall (18) (8344) (7) (1) - contains an interface to the low-level operating system primitives.
244. testing (2) (4616) (13) (1) - provides support for automated testing of Go packages.
245. testing/fstest (0) (868) (14) (5) - implements support for testing implementations and users of file systems.
246. testing/internal/testdeps (0) (199) (18) (5) - provides access to dependencies needed by test execution.
247. testing/iotest (1) (357) (13) (1) - implements Readers and Writers useful mainly for testing.
248. testing/quick (0) (385) (13) (5) - implements utility functions to help with black box testing.
249. testing/slogtest (0) (322) (14) (5) - implements support for testing implementations of log/slog.Handler.
250. text/scanner (1) (792) (12) (2) - provides a scanner and tokenizer for UTF-8-encoded text.
251. text/tabwriter (3) (600) (7) (2) - implements a write filter (tabwriter.Writer) that translates tabbed columns in input into properly aligned text.
252. text/template (2) (2795) (13) (1) - implements data-driven templates for generating textual output.
253. text/template/parse (2) (2521) (12) (2) - builds parse trees for templates as defined by text/template and html/template.
254. time (44) (5218) (8) (1) - provides functionality for measuring and displaying time.
255. time/tzdata (0) (115) (8) (5) - provides an embedded copy of the timezone database.
256. unicode (27) (8923) (1) (1) - provides data and functions to test some properties of Unicode code points.
257. unicode/utf16 (3) (133) (1) (2) - implements encoding and decoding of UTF-16 sequences.
258. unicode/utf8 (49) (583) (1) (1) - implements functions and constants to support text encoded in UTF-8.
259. unsafe (48) (269) (1) (1) - contains operations that step around the type safety of Go programs.
260. vendor/golang.org/x/crypto/chacha20 (1) (454) (10) (3) - implements the ChaCha20 and XChaCha20 encryption algorithms as specified in RFC 8439 and draft-irtf-cfrg-xchacha-01.
261. vendor/golang.org/x/crypto/chacha20poly1305 (1) (352) (13) (2) - implements the ChaCha20-Poly1305 AEAD and its extended nonce variant XChaCha20-Poly1305, as specified in RFC 8439 and draft-irtf-cfrg-xchacha-01.
262. vendor/golang.org/x/crypto/cryptobyte (3) (1341) (14) (2) - contains types that help with parsing and constructing length-prefixed, binary messages, including ASN.1 DER.
263. vendor/golang.org/x/crypto/cryptobyte/asn1 (3) (46) (1) (2) - contains supporting types for parsing and building ASN.1 messages with the cryptobyte package.
264. vendor/golang.org/x/crypto/hkdf (1) (93) (12) (2) - implements the HMAC-based Extract-and-Expand Key Derivation Function (HKDF) as defined in RFC 5869.
265. vendor/golang.org/x/crypto/internal/alias (2) (32) (2) (3) - implements memory aliasing tests.
266. vendor/golang.org/x/crypto/internal/poly1305 (1) (478) (9) (3) - implements Poly1305 one-time message authentication code as specified in https://cr.yp.to/mac/poly1305-20050329.pdf.
267. vendor/golang.org/x/net/dns/dnsmessage (1) (2694) (6) (2) - provides a mostly RFC 1035 compliant implementation of DNS message packing and unpacking.
268. vendor/golang.org/x/net/http/httpguts (4) (402) (16) (1) - provides functions implementing various details of the HTTP specification.
269. vendor/golang.org/x/net/http/httpproxy (1) (370) (16) (2) - provides support for HTTP proxy determination based on environment variables, as provided by net/http's ProxyFromEnvironment function.
270. vendor/golang.org/x/net/http2/hpack (1) (1585) (12) (2) - implements HPACK, a compression format for efficiently representing HTTP header fields in the context of HTTP/2.
271. vendor/golang.org/x/net/idna (3) (6345) (15) (2) - implements IDNA2008 using the compatibility processing defined by UTS (Unicode Technical Standard) #46, which defines a standard to deal with the transition from IDNA2003.
272. vendor/golang.org/x/net/nettest (0) (835) (14) (5) - provides utilities for network testing.
273. vendor/golang.org/x/sys/cpu (1) (685) (12) (3) - implements processor feature detection for various CPU architectures.
274. vendor/golang.org/x/text/secure/bidirule (1) (348) (14) (3) - implements the Bidi Rule defined by RFC 5893.
275. vendor/golang.org/x/text/transform (2) (709) (8) (4) - provides reader and writer wrappers that transform the bytes passing through as well as various transformations.
276. vendor/golang.org/x/text/unicode/bidi (2) (4060) (13) (3) - contains functionality for bidirectional text support.
277. vendor/golang.org/x/text/unicode/norm (1) (10142) (12) (3) - contains types and functions for normalizing Unicode strings.