Skip to content

Commit

Permalink
增加本地http直接查看示例工具
Browse files Browse the repository at this point in the history
  • Loading branch information
zc2638 committed Apr 15, 2019
1 parent 1fce158 commit 3bbf657
Show file tree
Hide file tree
Showing 115 changed files with 1,316 additions and 90 deletions.
70 changes: 35 additions & 35 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,42 +5,42 @@ Go标准库所有使用方法例子,请注意这不是Go的中文版标准库

## 简介

- [**archive**](https://github.com/zc2638/go-standard/tree/master/archive)      tar/zip压缩操作
- [**bufio**](https://github.com/zc2638/go-standard/tree/master/bufio)       有缓冲的I/O
- [**bytes**](https://github.com/zc2638/go-standard/tree/master/bytes)       操作[]byte字节片
- [**compress**](https://github.com/zc2638/go-standard/tree/master/compress)     bzip2/flate/gzip/lzw/zlib压缩操作
- [**container**](https://github.com/zc2638/go-standard/tree/master/container)     堆操作/双向链表/环形链表
- [**context**](https://github.com/zc2638/go-standard/tree/master/context)      上下文类型
- [**crypto**](https://github.com/zc2638/go-standard/tree/master/crypto)      常用的密码(算法)
- [**database/sql**](https://github.com/zc2638/go-standard/tree/master/database/sql)   数据库接口
- [**encoding**](https://github.com/zc2638/go-standard/tree/master/encoding)     数据编码
- [**errors**](https://github.com/zc2638/go-standard/tree/master/errors)       创建错误函数
- [**expvar**](https://github.com/zc2638/go-standard/tree/master/expvar)      公共变量
- [**flag**](https://github.com/zc2638/go-standard/tree/master/flag)        命令行参数解析
- [**fmt**](https://github.com/zc2638/go-standard/tree/master/fmt)         格式化I/O
- [**hash**](https://github.com/zc2638/go-standard/tree/master/hash)       提供hash函数的接口
- [**html**](https://github.com/zc2638/go-standard/tree/master/html)        转义和解转义HTML文本
- [**image**](https://github.com/zc2638/go-standard/tree/master/image)       实现了基本的2D图片库
- [**index/suffixarray**](https://github.com/zc2638/go-standard/tree/master/index/suffixarray)  使用内存后缀数组以对数时间实现子字符串搜索
- [**archive**](https://github.com/zc2638/go-standard/tree/master/src/archive)      tar/zip压缩操作
- [**bufio**](https://github.com/zc2638/go-standard/tree/master/src/bufio)       有缓冲的I/O
- [**bytes**](https://github.com/zc2638/go-standard/tree/master/src/bytes)       操作[]byte字节片
- [**compress**](https://github.com/zc2638/go-standard/tree/master/src/compress)     bzip2/flate/gzip/lzw/zlib压缩操作
- [**container**](https://github.com/zc2638/go-standard/tree/master/src/container)     堆操作/双向链表/环形链表
- [**context**](https://github.com/zc2638/go-standard/tree/master/src/context)      上下文类型
- [**crypto**](https://github.com/zc2638/go-standard/tree/master/src/crypto)      常用的密码(算法)
- [**database/sql**](https://github.com/zc2638/go-standard/tree/master/src/database/sql)   数据库接口
- [**encoding**](https://github.com/zc2638/go-standard/tree/master/src/encoding)     数据编码
- [**errors**](https://github.com/zc2638/go-standard/tree/master/src/errors)       创建错误函数
- [**expvar**](https://github.com/zc2638/go-standard/tree/master/src/expvar)      公共变量
- [**flag**](https://github.com/zc2638/go-standard/tree/master/src/flag)        命令行参数解析
- [**fmt**](https://github.com/zc2638/go-standard/tree/master/src/fmt)         格式化I/O
- [**hash**](https://github.com/zc2638/go-standard/tree/master/src/hash)       提供hash函数的接口
- [**html**](https://github.com/zc2638/go-standard/tree/master/src/html)        转义和解转义HTML文本
- [**image**](https://github.com/zc2638/go-standard/tree/master/src/image)       实现了基本的2D图片库
- [**index/suffixarray**](https://github.com/zc2638/go-standard/tree/master/src/index/suffixarray)  使用内存后缀数组以对数时间实现子字符串搜索
- [**io**](https://github.com/zc2638/go-standard/tree/master/io)          I/O操作
- [**log**](https://github.com/zc2638/go-standard/tree/master/log)        简单的日志服务
- [**math**](https://github.com/zc2638/go-standard/tree/master/math)       基本的数学常数和数学函数
- [**mime**](https://github.com/zc2638/go-standard/tree/master/mime)       实现了MIME的部分规定
- [**net**](https://github.com/zc2638/go-standard/tree/master/net)        提供了可移植的网络I/O接口,包括TCP/IP、UDP、域名解析和Unix域socket
- [**os**](https://github.com/zc2638/go-standard/tree/master/os)         操作系统函数
- [**path**](https://github.com/zc2638/go-standard/tree/master/path)        对斜杠分隔的路径的实用操作
- [**plugin**](https://github.com/zc2638/go-standard/tree/master/plugin)       插件生成和加载
- [**reflect**](https://github.com/zc2638/go-standard/tree/master/reflect)       反射操作任意类型对象
- [**regexp**](https://github.com/zc2638/go-standard/tree/master/regexp)      正则表达式
- [**rutime**](https://github.com/zc2638/go-standard/tree/master/runtime)       提供和go运行时环境的互操作,如控制go程的函数
- [**sort**](https://github.com/zc2638/go-standard/tree/master/sort)        排序切片和用户自定义数据集
- [**strconv**](https://github.com/zc2638/go-standard/tree/master/strconv)       基本数据类型和其字符串类型的相互转换
- [**strings**](https://github.com/zc2638/go-standard/tree/master/strings)      操作字符串
- [**sync**](https://github.com/zc2638/go-standard/tree/master/sync)       提供了基本的同步基元,如互斥锁
- [**text**](https://github.com/zc2638/go-standard/tree/master/text)        文本操作
- [**time**](https://github.com/zc2638/go-standard/tree/master/time)        时间操作
- [**unicode**](https://github.com/zc2638/go-standard/tree/master/unicode)      unicode操作
- [**unsafe**](https://github.com/zc2638/go-standard/tree/master/unsafe)      提供了一些跳过go语言类型安全限制的操作
- [**log**](https://github.com/zc2638/go-standard/tree/master/src/log)        简单的日志服务
- [**math**](https://github.com/zc2638/go-standard/tree/master/src/math)       基本的数学常数和数学函数
- [**mime**](https://github.com/zc2638/go-standard/tree/master/src/mime)       实现了MIME的部分规定
- [**net**](https://github.com/zc2638/go-standard/tree/master/src/net)        提供了可移植的网络I/O接口,包括TCP/IP、UDP、域名解析和Unix域socket
- [**os**](https://github.com/zc2638/go-standard/tree/master/src/os)         操作系统函数
- [**path**](https://github.com/zc2638/go-standard/tree/master/src/path)        对斜杠分隔的路径的实用操作
- [**plugin**](https://github.com/zc2638/go-standard/tree/master/src/plugin)       插件生成和加载
- [**reflect**](https://github.com/zc2638/go-standard/tree/master/src/reflect)       反射操作任意类型对象
- [**regexp**](https://github.com/zc2638/go-standard/tree/master/src/regexp)      正则表达式
- [**rutime**](https://github.com/zc2638/go-standard/tree/master/src/runtime)       提供和go运行时环境的互操作,如控制go程的函数
- [**sort**](https://github.com/zc2638/go-standard/tree/master/src/sort)        排序切片和用户自定义数据集
- [**strconv**](https://github.com/zc2638/go-standard/tree/master/src/strconv)       基本数据类型和其字符串类型的相互转换
- [**strings**](https://github.com/zc2638/go-standard/tree/master/src/strings)      操作字符串
- [**sync**](https://github.com/zc2638/go-standard/tree/master/src/sync)       提供了基本的同步基元,如互斥锁
- [**text**](https://github.com/zc2638/go-standard/tree/master/src/text)        文本操作
- [**time**](https://github.com/zc2638/go-standard/tree/master/src/time)        时间操作
- [**unicode**](https://github.com/zc2638/go-standard/tree/master/src/unicode)      unicode操作
- [**unsafe**](https://github.com/zc2638/go-standard/tree/master/src/unsafe)      提供了一些跳过go语言类型安全限制的操作

### 参考

Expand Down
Loading

0 comments on commit 3bbf657

Please sign in to comment.