目录
目录README.md

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
邀请码
    Gitlink(确实开源)
  • 加入我们
  • 官网邮箱:gitlink@ccf.org.cn
  • QQ群
  • QQ群
  • 公众号
  • 公众号

©Copyright 2023 CCF 开源发展委员会
Powered by Trustie& IntelliDE 京ICP备13000930号