代码拉取完成,页面将自动刷新
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
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。