Skip to content

Collection of helper methods for byte manipulation in Swift

License

Notifications You must be signed in to change notification settings

skogland/swift-bytes

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Collection of helper methods for byte manipulation in Swift

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 86.1%
  • Ruby 10.5%
  • Objective-C 3.4%