-
-
Save zinwalin/cbe499d2bb7b008675b27d00b33e7c06 to your computer and use it in GitHub Desktop.
Convert UInt to UInt8(byte) Array in swift.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protocol UIntToBytesConvertable { | |
var toBytes: [UInt8] { get } | |
} | |
extension UIntToBytesConvertable { | |
func toByteArr<T: BinaryInteger>(endian: T, count: Int) -> [UInt8] { | |
var _endian = endian | |
let bytePtr = withUnsafePointer(to: &_endian) { | |
$0.withMemoryRebound(to: UInt8.self, capacity: count) { | |
UnsafeBufferPointer(start: $0, count: count) | |
} | |
} | |
return [UInt8](bytePtr) | |
} | |
} | |
extension UInt16: UIntToBytesConvertable { | |
var toBytes: [UInt8] { | |
if CFByteOrderGetCurrent() == Int(CFByteOrderLittleEndian.rawValue) { | |
return toByteArr(endian: self.littleEndian, | |
count: MemoryLayout<UInt16>.size) | |
} else { | |
return toByteArr(endian: self.bigEndian, | |
count: MemoryLayout<UInt16>.size) | |
} | |
} | |
} | |
extension UInt32: UIntToBytesConvertable { | |
var toBytes: [UInt8] { | |
if CFByteOrderGetCurrent() == Int(CFByteOrderLittleEndian.rawValue) { | |
return toByteArr(endian: self.littleEndian, | |
count: MemoryLayout<UInt32>.size) | |
} else { | |
return toByteArr(endian: self.bigEndian, | |
count: MemoryLayout<UInt32>.size) | |
} | |
} | |
} | |
extension UInt64: UIntToBytesConvertable { | |
var toBytes: [UInt8] { | |
if CFByteOrderGetCurrent() == Int(CFByteOrderLittleEndian.rawValue) { | |
return toByteArr(endian: self.littleEndian, | |
count: MemoryLayout<UInt64>.size) | |
} else { | |
return toByteArr(endian: self.bigEndian, | |
count: MemoryLayout<UInt64>.size) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment