目录 本文未发布 发布文章
目录
发布: 2022年3月15日,License: BSD-3-Clause
详细文档树
archive
bufio:Package bufio 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.
builtin:Package builtin provides documentation for Go’s predeclared identifiers.
bytes:Package bytes implements functions for the manipulation of byte slices.
compress
- bzip2: Package bzip2 implements bzip2 decompression.
- flate: Package flate implements the DEFLATE compressed data format, described in RFC 1951.
- gzip: Package gzip implements reading and writing of gzip format compressed files, as specified in RFC 1952.
- lzw: Package lzw 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.
- zlib: Package zlib implements reading and writing of zlib format compressed data, as specified in RFC 1950.
container
- heap: Package heap provides heap operations for any type that implements heap.Interface.
- list: Package list implements a doubly linked list.
- ring: Package ring implements operations on circular lists.
context:Package context defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes.
- aes: Package aes implements AES encryption (formerly Rijndael), as defined in U.S. Federal Information Processing Standards Publication 197.
💖喜欢本文档的,欢迎点赞、收藏、留言或转发,谢谢支持!
作者邮箱:zhuzixian520@126.com,github地址:github.com/zhuzixian520
本文官方英文文档地址:pkg.go.dev/std@go1.18
推荐文章: