aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/aws/smithy-go/io/byte.go
blob: f8417c15b85b3684849393273b168f44a95d81d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package io

const (
	// Byte is 8 bits
	Byte int64 = 1
	// KibiByte (KiB) is 1024 Bytes
	KibiByte = Byte * 1024
	// MebiByte (MiB) is 1024 KiB
	MebiByte = KibiByte * 1024
	// GibiByte (GiB) is 1024 MiB
	GibiByte = MebiByte * 1024
)