File: example_test.go

package info (click to toggle)
golang-github-martinlindhe-base36 1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 84 kB
  • sloc: makefile: 6
file content (27 lines) | stat: -rw-r--r-- 479 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package base36_test

import (
	"fmt"

	"github.com/martinlindhe/base36"
)

func ExampleEncode() {
	fmt.Println(base36.Encode(5481594952936519619))
	// Output: 15N9Z8L3AU4EB
}

func ExampleDecode() {
	fmt.Println(base36.Decode("15N9Z8L3AU4EB"))
	// Output: 5481594952936519619
}

func ExampleEncodeBytes() {
	fmt.Println(base36.EncodeBytes([]byte{1, 2, 3, 4}))
	// Output: A2F44
}

func ExampleDecodeToBytes() {
	fmt.Println(base36.DecodeToBytes("A2F44"))
	// Output: [1 2 3 4]
}