kubernetes/vendor/github.com/dustin/go-humanize/bigbytes.go

var bigIECExp

var BigByte

var BigKiByte

var BigMiByte

var BigGiByte

var BigTiByte

var BigPiByte

var BigEiByte

var BigZiByte

var BigYiByte

var BigRiByte

var BigQiByte

var bigSIExp

var BigSIByte

var BigKByte

var BigMByte

var BigGByte

var BigTByte

var BigPByte

var BigEByte

var BigZByte

var BigYByte

var BigRByte

var BigQByte

var bigBytesSizeTable

var ten

func humanateBigBytes(s, base *big.Int, sizes []string) string {}

// BigBytes produces a human readable representation of an SI size.
//
// See also: ParseBigBytes.
//
// BigBytes(82854982) -> 83 MB
func BigBytes(s *big.Int) string {}

// BigIBytes produces a human readable representation of an IEC size.
//
// See also: ParseBigBytes.
//
// BigIBytes(82854982) -> 79 MiB
func BigIBytes(s *big.Int) string {}

// ParseBigBytes parses a string representation of bytes into the number
// of bytes it represents.
//
// See also: BigBytes, BigIBytes.
//
// ParseBigBytes("42 MB") -> 42000000, nil
// ParseBigBytes("42 mib") -> 44040192, nil
func ParseBigBytes(s string) (*big.Int, error) {}