2 Star 2 Fork 8

王布衣/gox

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
api
cache
cron
encoding/binary
cstruct
struc
test_pack_init
.travis.yml
LICENSE
README.md
bench_test.go
binary.go
custom.go
custom_float16.go
custom_float16_test.go
custom_test.go
field.go
field_test.go
fields.go
fields_test.go
legacy.go
packable_test.go
packer.go
parse.go
parse_test.go
struc.go
struc_test.go
types.go
types_test.go
README.md
errors
exception
fastjson
fastqueue
gls
http
logger
mdc
num
pool
progressbar
qrterminal
signal
tags
text/encoding
threadlocal
util
.codecov.yml
.gitignore
.travis.yml
CHANGELOG.md
LICENSE
README.md
go.mod
go.sum
go.test.sh
push-gitee.sh
push-github.sh
util.md
克隆/下载
legacy.go 413 Bytes
一键复制 编辑 原始数据 按行查看 历史
package struc
import (
"encoding/binary"
"io"
)
// Deprecated. Use PackWithOptions.
func PackWithOrder(w io.Writer, data interface{}, order binary.ByteOrder) error {
return PackWithOptions(w, data, &Options{Order: order})
}
// Deprecated. Use UnpackWithOptions.
func UnpackWithOrder(r io.Reader, data interface{}, order binary.ByteOrder) error {
return UnpackWithOptions(r, data, &Options{Order: order})
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/quant1x/gox.git
git@gitee.com:quant1x/gox.git
quant1x
gox
gox
v1.7.7

搜索帮助