From 561ced0d0f8532301acca869774bd7d9293c69b6 Mon Sep 17 00:00:00 2001 From: Wade Tregaskis Date: Sat, 2 Mar 2024 21:03:32 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=A6=E2=80=8D=E2=99=82=EF=B8=8F=20Added?= =?UTF-8?q?=20missing=20'public'=20access=20qualifier=20for=20the=20new=20?= =?UTF-8?q?Collection=20of=20UInt8=20extension.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Sources/FoundationExtensions/CollectionOfUInt8.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/FoundationExtensions/CollectionOfUInt8.swift b/Sources/FoundationExtensions/CollectionOfUInt8.swift index 369f8cd..390f05f 100644 --- a/Sources/FoundationExtensions/CollectionOfUInt8.swift +++ b/Sources/FoundationExtensions/CollectionOfUInt8.swift @@ -1,6 +1,6 @@ // Created by Wade Tregaskis on 2024-03-02. -extension Collection where Element == UInt8 { +public extension Collection where Element == UInt8 { func asHexString(uppercase: Bool = true, delimiterEvery: Int = 0, delimiter: String = " ") -> String {