Skip to content

Commit

Permalink
Add new string type for encoding/decoding
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbeltran committed Dec 22, 2017
1 parent f3027bc commit 33d27ed
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions encoding/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,10 @@ const (
// ArrayAll is an argument typically passed during a read to signify where to
// read
const ArrayAll uint32 = ^uint32(0)

type stringType uint8

// Supported String types
const (
stringUTF8 stringType = 0
)

0 comments on commit 33d27ed

Please sign in to comment.