14 Star 51 Fork 12

Hprose / hprose-go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
tags.go 1.98 KB
一键复制 编辑 原始数据 按行查看 历史
Hprose 提交于 2016-10-31 21:45 . Update to hprose 2.0
/**********************************************************\
| |
| hprose |
| |
| Official WebSite: http://www.hprose.com/ |
| http://www.hprose.org/ |
| |
\**********************************************************/
/**********************************************************\
* *
* io/tags.go *
* *
* hprose tags enum for Go. *
* *
* LastModified: Aug 15, 2016 *
* Author: Ma Bingyao <andot@hprose.com> *
* *
\**********************************************************/
package io
// Hprose Tags
const (
// Serialize Type
TagInteger byte = 'i'
TagLong byte = 'l'
TagDouble byte = 'd'
TagNull byte = 'n'
TagEmpty byte = 'e'
TagTrue byte = 't'
TagFalse byte = 'f'
TagNaN byte = 'N'
TagInfinity byte = 'I'
TagDate byte = 'D'
TagTime byte = 'T'
TagUTC byte = 'Z'
TagBytes byte = 'b'
TagUTF8Char byte = 'u'
TagString byte = 's'
TagGUID byte = 'g'
TagList byte = 'a'
TagMap byte = 'm'
TagClass byte = 'c'
TagObject byte = 'o'
TagRef byte = 'r'
// Serialize Marks
TagPos byte = '+'
TagNeg byte = '-'
TagSemicolon byte = ';'
TagOpenbrace byte = '{'
TagClosebrace byte = '}'
TagQuote byte = '"'
TagPoint byte = '.'
// Protocol Tags
TagFunctions byte = 'F'
TagCall byte = 'C'
TagResult byte = 'R'
TagArgument byte = 'A'
TagError byte = 'E'
TagEnd byte = 'z'
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/andot/hprose-go.git
git@gitee.com:andot/hprose-go.git
andot
hprose-go
hprose-go
v2.0.3

搜索帮助

344bd9b3 5694891 D2dac590 5694891