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