加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
encoder.go 723 Bytes
一键复制 编辑 原始数据 按行查看 历史
gouguoyin 提交于 2024-11-21 23:08 . 移除中文注释
package dongle
type Encoder struct {
dongle
}
// newEncoder returns a new Encoder instance.
func newEncoder() Encoder {
return Encoder{}
}
// FromString encodes from string.
func (e Encoder) FromString(s string) Encoder {
e.src = string2bytes(s)
return e
}
// FromBytes encodes from byte slice.
func (e Encoder) FromBytes(b []byte) Encoder {
e.src = b
return e
}
// String implements Stringer interface for Encoder struct.
func (e Encoder) String() string {
return e.ToString()
}
// ToString outputs as string.
func (e Encoder) ToString() string {
return bytes2string(e.dst)
}
// ToBytes outputs as byte slice.
func (e Encoder) ToBytes() []byte {
if len(e.dst) == 0 {
return []byte("")
}
return e.dst
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化