summaryrefslogtreecommitdiff
path: root/vendor/github.com/tinylib/msgp/msgp/size.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/tinylib/msgp/msgp/size.go')
-rw-r--r--vendor/github.com/tinylib/msgp/msgp/size.go40
1 files changed, 0 insertions, 40 deletions
diff --git a/vendor/github.com/tinylib/msgp/msgp/size.go b/vendor/github.com/tinylib/msgp/msgp/size.go
deleted file mode 100644
index 585a67fdb..000000000
--- a/vendor/github.com/tinylib/msgp/msgp/size.go
+++ /dev/null
@@ -1,40 +0,0 @@
-package msgp
-
-// The sizes provided
-// are the worst-case
-// encoded sizes for
-// each type. For variable-
-// length types ([]byte, string),
-// the total encoded size is
-// the prefix size plus the
-// length of the object.
-const (
- Int64Size = 9
- IntSize = Int64Size
- UintSize = Int64Size
- Int8Size = 2
- Int16Size = 3
- Int32Size = 5
- Uint8Size = 2
- ByteSize = Uint8Size
- Uint16Size = 3
- Uint32Size = 5
- Uint64Size = Int64Size
- Float64Size = 9
- Float32Size = 5
- Complex64Size = 10
- Complex128Size = 18
-
- DurationSize = Int64Size
- TimeSize = 15
- BoolSize = 1
- NilSize = 1
- JSONNumberSize = Int64Size // Same as Float64Size
-
- MapHeaderSize = 5
- ArrayHeaderSize = 5
-
- BytesPrefixSize = 5
- StringPrefixSize = 5
- ExtensionPrefixSize = 6
-)