Swiftpack.co - dapperstout/swift-bytes as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by dapperstout.
dapperstout/swift-bytes 0.8.0
Collection of helper methods for byte manipulation in Swift
⭐️ 13
🕓 2 years ago
iOS macOS tvOS
.package(url: "https://github.com/dapperstout/swift-bytes.git", from: "0.8.0")

Swift Bytes

Swift Version 5 Carthage compatible CocoaPods Version Badge License Badge Supported Platforms Badge

This library contains a collection of helper methods for byte manipulation in Swift. It requires Swift 5.

If you're like me, and can never remember whether you should double right-shift or tripple left-shift to get to the bits you want, then this library might be of some use to you.

Example

// Let's say we have an interesting 64 bit number:
let largeNumber: UInt64 = 0xF00FA00AB00BC00C

// Extracting the fifth byte, the hard way:
let fifthByte = UInt8((largeNumber >> 24) & 0xFF)

// Extracting the fifth byte using this library:
let fifthByte = bytes(largeNumber)[4]

All available byte manipulation methods can be found in the Bytes.swift file. The BytesTests.swift file contains examples of their use.

Installation

You can use CocoaPods to add this library to your project. Use the following in your Podfile:

pod 'SwiftBytes'

After adding this library to your project, you can import it in your swift files:

import SwiftBytes

GitHub

link
Stars: 13
Last commit: 2 years ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics