SwiftFormat genericExtensions

This commit is contained in:
Nindi Gill 2023-11-19 19:40:39 +11:00
parent da8eeb0f29
commit 32f1ff045a
No known key found for this signature in database
GPG key ID: FF9A7FD590D4F4B1

View file

@ -5,7 +5,7 @@
// Created by Nindi Gill on 20/6/2022.
//
extension Array where Element == UInt8 {
extension Array<UInt8> {
func uInt8(at offset: Int) -> UInt8 {
self[offset]
}