baseN4go

package module
v0.0.0-...-8d01e84 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 8, 2014 License: MIT Imports: 4 Imported by: 2

README

baseN4go

Build Status license

介绍
使用

go get github.com/sumory/baseN4go

默认数组:

[]string{
	"0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
	"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o",
	"p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z",
	"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O",
	"P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"}

取默认数组前N项作为基数

var N int64 = 16
err, baseN := baseN4go.NewBaseN(N) //16进制
_, encodeResult := baseN.Encode(123456)
_, decodeResult := baseN.Decode(encodeResult)

自定义基数

err, baseN := baseN4go.NewBaseN([]string{"a", "b", "c", "d"}) //四进制
_, encodeResult := baseN.Encode(123456)
_, decodeResult := baseN.Decode(encodeResult)
TODO

性能较低,待优化EncodeDecode方法

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BaseN

type BaseN struct {
	// contains filtered or unexported fields
}

func NewBaseN

func NewBaseN(param interface{}) (error, *BaseN)

func (*BaseN) Decode

func (this *BaseN) Decode(str string) (error, int64)

func (*BaseN) Encode

func (this *BaseN) Encode(num int64) (error, string)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL