The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of EFFoundation, reference 1.7.1 (afb22d), with Swift 6.2 (beta) for macOS (SPM) on 20 Jun 2025 10:29:49 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/EFPrefix/EFFoundation.git
Reference: 1.7.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/EFPrefix/EFFoundation
 * tag               1.7.1      -> FETCH_HEAD
HEAD is now at afb22de 1.7.1
Cloned https://github.com/EFPrefix/EFFoundation.git
Revision (git rev-parse @):
afb22ded5e2dfd8b375b9e4236ea9c20ecd5815f
SUCCESS checkout https://github.com/EFPrefix/EFFoundation.git at 1.7.1
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/EFPrefix/EFFoundation.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/56] Emitting module EFFoundation
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/BitSet.swift:158:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'BitSet' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
156 | extension BitSet: Hashable {
157 |     /* Based on the hashing code from Java's BitSet. */
158 |     public var hashValue: Int {
    |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'BitSet' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
159 |         var h = Word(1234)
160 |         for i in stride(from: words.count, to: 0, by: -1) {
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:5:33: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  1 | // https://github.com/raywenderlich/swift-algorithm-club
  2 | public final class LinkedList<T> {
    |                               `- note: 'T' previously declared here
  3 |
  4 |     /// Linked List's Node Class Declaration
  5 |     public class LinkedListNode<T> {
    |                                 `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  6 |         var value: T
  7 |         var next: LinkedListNode?
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:333:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
327 | // MARK: - Collection Index
328 | /// Custom index type that contains a reference to the node at index 'tag'
329 | public struct LinkedListIndex<T>: Comparable {
    |                               `- note: 'T' previously declared here
330 |     fileprivate let node: LinkedList<T>.LinkedListNode<T>?
331 |     fileprivate let tag: Int
332 |
333 |     public static func==<T>(lhs: LinkedListIndex<T>, rhs: LinkedListIndex<T>) -> Bool {
    |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
334 |         return (lhs.tag == rhs.tag)
335 |     }
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:337:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
327 | // MARK: - Collection Index
328 | /// Custom index type that contains a reference to the node at index 'tag'
329 | public struct LinkedListIndex<T>: Comparable {
    |                               `- note: 'T' previously declared here
330 |     fileprivate let node: LinkedList<T>.LinkedListNode<T>?
331 |     fileprivate let tag: Int
    :
335 |     }
336 |
337 |     public static func< <T>(lhs: LinkedListIndex<T>, rhs: LinkedListIndex<T>) -> Bool {
    |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
338 |         return (lhs.tag < rhs.tag)
339 |     }
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/Extension/String+.swift:220:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
218 |
219 | // throw errors using strings
220 | extension String: LocalizedError {
    | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |     public var errorDescription: String? { return self }
222 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[4/61] Compiling EFFoundation BitSet.swift
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/BitSet.swift:158:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'BitSet' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
156 | extension BitSet: Hashable {
157 |     /* Based on the hashing code from Java's BitSet. */
158 |     public var hashValue: Int {
    |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'BitSet' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
159 |         var h = Word(1234)
160 |         for i in stride(from: words.count, to: 0, by: -1) {
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:5:33: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  1 | // https://github.com/raywenderlich/swift-algorithm-club
  2 | public final class LinkedList<T> {
    |                               `- note: 'T' previously declared here
  3 |
  4 |     /// Linked List's Node Class Declaration
  5 |     public class LinkedListNode<T> {
    |                                 `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  6 |         var value: T
  7 |         var next: LinkedListNode?
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:333:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
327 | // MARK: - Collection Index
328 | /// Custom index type that contains a reference to the node at index 'tag'
329 | public struct LinkedListIndex<T>: Comparable {
    |                               `- note: 'T' previously declared here
330 |     fileprivate let node: LinkedList<T>.LinkedListNode<T>?
331 |     fileprivate let tag: Int
332 |
333 |     public static func==<T>(lhs: LinkedListIndex<T>, rhs: LinkedListIndex<T>) -> Bool {
    |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
334 |         return (lhs.tag == rhs.tag)
335 |     }
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:337:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
327 | // MARK: - Collection Index
328 | /// Custom index type that contains a reference to the node at index 'tag'
329 | public struct LinkedListIndex<T>: Comparable {
    |                               `- note: 'T' previously declared here
330 |     fileprivate let node: LinkedList<T>.LinkedListNode<T>?
331 |     fileprivate let tag: Int
    :
335 |     }
336 |
337 |     public static func< <T>(lhs: LinkedListIndex<T>, rhs: LinkedListIndex<T>) -> Bool {
    |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
338 |         return (lhs.tag < rhs.tag)
339 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[5/61] Compiling EFFoundation Deque.swift
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/BitSet.swift:158:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'BitSet' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
156 | extension BitSet: Hashable {
157 |     /* Based on the hashing code from Java's BitSet. */
158 |     public var hashValue: Int {
    |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'BitSet' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
159 |         var h = Word(1234)
160 |         for i in stride(from: words.count, to: 0, by: -1) {
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:5:33: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  1 | // https://github.com/raywenderlich/swift-algorithm-club
  2 | public final class LinkedList<T> {
    |                               `- note: 'T' previously declared here
  3 |
  4 |     /// Linked List's Node Class Declaration
  5 |     public class LinkedListNode<T> {
    |                                 `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  6 |         var value: T
  7 |         var next: LinkedListNode?
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:333:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
327 | // MARK: - Collection Index
328 | /// Custom index type that contains a reference to the node at index 'tag'
329 | public struct LinkedListIndex<T>: Comparable {
    |                               `- note: 'T' previously declared here
330 |     fileprivate let node: LinkedList<T>.LinkedListNode<T>?
331 |     fileprivate let tag: Int
332 |
333 |     public static func==<T>(lhs: LinkedListIndex<T>, rhs: LinkedListIndex<T>) -> Bool {
    |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
334 |         return (lhs.tag == rhs.tag)
335 |     }
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:337:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
327 | // MARK: - Collection Index
328 | /// Custom index type that contains a reference to the node at index 'tag'
329 | public struct LinkedListIndex<T>: Comparable {
    |                               `- note: 'T' previously declared here
330 |     fileprivate let node: LinkedList<T>.LinkedListNode<T>?
331 |     fileprivate let tag: Int
    :
335 |     }
336 |
337 |     public static func< <T>(lhs: LinkedListIndex<T>, rhs: LinkedListIndex<T>) -> Bool {
    |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
338 |         return (lhs.tag < rhs.tag)
339 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[6/61] Compiling EFFoundation LinkedList.swift
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/BitSet.swift:158:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'BitSet' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
156 | extension BitSet: Hashable {
157 |     /* Based on the hashing code from Java's BitSet. */
158 |     public var hashValue: Int {
    |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'BitSet' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
159 |         var h = Word(1234)
160 |         for i in stride(from: words.count, to: 0, by: -1) {
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:5:33: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  1 | // https://github.com/raywenderlich/swift-algorithm-club
  2 | public final class LinkedList<T> {
    |                               `- note: 'T' previously declared here
  3 |
  4 |     /// Linked List's Node Class Declaration
  5 |     public class LinkedListNode<T> {
    |                                 `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  6 |         var value: T
  7 |         var next: LinkedListNode?
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:333:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
327 | // MARK: - Collection Index
328 | /// Custom index type that contains a reference to the node at index 'tag'
329 | public struct LinkedListIndex<T>: Comparable {
    |                               `- note: 'T' previously declared here
330 |     fileprivate let node: LinkedList<T>.LinkedListNode<T>?
331 |     fileprivate let tag: Int
332 |
333 |     public static func==<T>(lhs: LinkedListIndex<T>, rhs: LinkedListIndex<T>) -> Bool {
    |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
334 |         return (lhs.tag == rhs.tag)
335 |     }
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:337:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
327 | // MARK: - Collection Index
328 | /// Custom index type that contains a reference to the node at index 'tag'
329 | public struct LinkedListIndex<T>: Comparable {
    |                               `- note: 'T' previously declared here
330 |     fileprivate let node: LinkedList<T>.LinkedListNode<T>?
331 |     fileprivate let tag: Int
    :
335 |     }
336 |
337 |     public static func< <T>(lhs: LinkedListIndex<T>, rhs: LinkedListIndex<T>) -> Bool {
    |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
338 |         return (lhs.tag < rhs.tag)
339 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[7/61] Compiling EFFoundation Queue.swift
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/BitSet.swift:158:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'BitSet' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
156 | extension BitSet: Hashable {
157 |     /* Based on the hashing code from Java's BitSet. */
158 |     public var hashValue: Int {
    |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'BitSet' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
159 |         var h = Word(1234)
160 |         for i in stride(from: words.count, to: 0, by: -1) {
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:5:33: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  1 | // https://github.com/raywenderlich/swift-algorithm-club
  2 | public final class LinkedList<T> {
    |                               `- note: 'T' previously declared here
  3 |
  4 |     /// Linked List's Node Class Declaration
  5 |     public class LinkedListNode<T> {
    |                                 `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  6 |         var value: T
  7 |         var next: LinkedListNode?
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:333:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
327 | // MARK: - Collection Index
328 | /// Custom index type that contains a reference to the node at index 'tag'
329 | public struct LinkedListIndex<T>: Comparable {
    |                               `- note: 'T' previously declared here
330 |     fileprivate let node: LinkedList<T>.LinkedListNode<T>?
331 |     fileprivate let tag: Int
332 |
333 |     public static func==<T>(lhs: LinkedListIndex<T>, rhs: LinkedListIndex<T>) -> Bool {
    |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
334 |         return (lhs.tag == rhs.tag)
335 |     }
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:337:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
327 | // MARK: - Collection Index
328 | /// Custom index type that contains a reference to the node at index 'tag'
329 | public struct LinkedListIndex<T>: Comparable {
    |                               `- note: 'T' previously declared here
330 |     fileprivate let node: LinkedList<T>.LinkedListNode<T>?
331 |     fileprivate let tag: Int
    :
335 |     }
336 |
337 |     public static func< <T>(lhs: LinkedListIndex<T>, rhs: LinkedListIndex<T>) -> Bool {
    |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
338 |         return (lhs.tag < rhs.tag)
339 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[8/61] Compiling EFFoundation Stack.swift
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/BitSet.swift:158:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'BitSet' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
156 | extension BitSet: Hashable {
157 |     /* Based on the hashing code from Java's BitSet. */
158 |     public var hashValue: Int {
    |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'BitSet' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
159 |         var h = Word(1234)
160 |         for i in stride(from: words.count, to: 0, by: -1) {
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:5:33: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  1 | // https://github.com/raywenderlich/swift-algorithm-club
  2 | public final class LinkedList<T> {
    |                               `- note: 'T' previously declared here
  3 |
  4 |     /// Linked List's Node Class Declaration
  5 |     public class LinkedListNode<T> {
    |                                 `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  6 |         var value: T
  7 |         var next: LinkedListNode?
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:333:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
327 | // MARK: - Collection Index
328 | /// Custom index type that contains a reference to the node at index 'tag'
329 | public struct LinkedListIndex<T>: Comparable {
    |                               `- note: 'T' previously declared here
330 |     fileprivate let node: LinkedList<T>.LinkedListNode<T>?
331 |     fileprivate let tag: Int
332 |
333 |     public static func==<T>(lhs: LinkedListIndex<T>, rhs: LinkedListIndex<T>) -> Bool {
    |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
334 |         return (lhs.tag == rhs.tag)
335 |     }
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:337:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
327 | // MARK: - Collection Index
328 | /// Custom index type that contains a reference to the node at index 'tag'
329 | public struct LinkedListIndex<T>: Comparable {
    |                               `- note: 'T' previously declared here
330 |     fileprivate let node: LinkedList<T>.LinkedListNode<T>?
331 |     fileprivate let tag: Int
    :
335 |     }
336 |
337 |     public static func< <T>(lhs: LinkedListIndex<T>, rhs: LinkedListIndex<T>) -> Bool {
    |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
338 |         return (lhs.tag < rhs.tag)
339 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[9/61] Compiling EFFoundation Tree.swift
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/BitSet.swift:158:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'BitSet' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
156 | extension BitSet: Hashable {
157 |     /* Based on the hashing code from Java's BitSet. */
158 |     public var hashValue: Int {
    |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'BitSet' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
159 |         var h = Word(1234)
160 |         for i in stride(from: words.count, to: 0, by: -1) {
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:5:33: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  1 | // https://github.com/raywenderlich/swift-algorithm-club
  2 | public final class LinkedList<T> {
    |                               `- note: 'T' previously declared here
  3 |
  4 |     /// Linked List's Node Class Declaration
  5 |     public class LinkedListNode<T> {
    |                                 `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  6 |         var value: T
  7 |         var next: LinkedListNode?
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:333:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
327 | // MARK: - Collection Index
328 | /// Custom index type that contains a reference to the node at index 'tag'
329 | public struct LinkedListIndex<T>: Comparable {
    |                               `- note: 'T' previously declared here
330 |     fileprivate let node: LinkedList<T>.LinkedListNode<T>?
331 |     fileprivate let tag: Int
332 |
333 |     public static func==<T>(lhs: LinkedListIndex<T>, rhs: LinkedListIndex<T>) -> Bool {
    |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
334 |         return (lhs.tag == rhs.tag)
335 |     }
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/DataStructure/LinkedList.swift:337:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
327 | // MARK: - Collection Index
328 | /// Custom index type that contains a reference to the node at index 'tag'
329 | public struct LinkedListIndex<T>: Comparable {
    |                               `- note: 'T' previously declared here
330 |     fileprivate let node: LinkedList<T>.LinkedListNode<T>?
331 |     fileprivate let tag: Int
    :
335 |     }
336 |
337 |     public static func< <T>(lhs: LinkedListIndex<T>, rhs: LinkedListIndex<T>) -> Bool {
    |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
338 |         return (lhs.tag < rhs.tag)
339 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[10/61] Compiling EFFoundation UInt16+.swift
[11/61] Compiling EFFoundation UInt32+.swift
[12/61] Compiling EFFoundation UInt64+.swift
[13/61] Compiling EFFoundation UInt8+.swift
[14/61] Compiling EFFoundation URL+.swift
[15/61] Compiling EFFoundation Dictionary+.swift
[16/61] Compiling EFFoundation DispatchQueue+.swift
[17/61] Compiling EFFoundation Double+.swift
[18/61] Compiling EFFoundation Float+.swift
[19/61] Compiling EFFoundation Int+.swift
[20/61] Compiling EFFoundation Int16+.swift
[21/61] Compiling EFFoundation String+.swift
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/Extension/String+.swift:220:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
218 |
219 | // throw errors using strings
220 | extension String: LocalizedError {
    | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |     public var errorDescription: String? { return self }
222 | }
[22/61] Compiling EFFoundation TimeInterval+.swift
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/Extension/String+.swift:220:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
218 |
219 | // throw errors using strings
220 | extension String: LocalizedError {
    | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |     public var errorDescription: String? { return self }
222 | }
[23/61] Compiling EFFoundation UIApplication+.swift
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/Extension/String+.swift:220:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
218 |
219 | // throw errors using strings
220 | extension String: LocalizedError {
    | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |     public var errorDescription: String? { return self }
222 | }
[24/61] Compiling EFFoundation UIButton+.swift
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/Extension/String+.swift:220:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
218 |
219 | // throw errors using strings
220 | extension String: LocalizedError {
    | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |     public var errorDescription: String? { return self }
222 | }
[25/61] Compiling EFFoundation UICollectionView+.swift
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/Extension/String+.swift:220:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
218 |
219 | // throw errors using strings
220 | extension String: LocalizedError {
    | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |     public var errorDescription: String? { return self }
222 | }
[26/61] Compiling EFFoundation UIColor+.swift
/Users/admin/builder/spi-builder-workspace/EFFoundation/Core/Extension/String+.swift:220:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
218 |
219 | // throw errors using strings
220 | extension String: LocalizedError {
    | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |     public var errorDescription: String? { return self }
222 | }
[27/61] Compiling EFFoundation EFFoundation.swift
[28/61] Compiling EFFoundation Array+.swift
[29/61] Compiling EFFoundation ArraySlice+.swift
[30/61] Compiling EFFoundation BinaryFloatingPoint+.swift
[31/61] Compiling EFFoundation BinaryInteger+.swift
[32/61] Compiling EFFoundation Bool+.swift
[33/61] Compiling EFFoundation UINavigationController+.swift
[34/61] Compiling EFFoundation UIRectCorner+.swift
[35/61] Compiling EFFoundation UIView+.swift
[36/61] Compiling EFFoundation UIViewController+.swift
[37/61] Compiling EFFoundation UInt+.swift
[38/61] Compiling EFFoundation UIControl+.swift
[39/61] Compiling EFFoundation UIEdgeInsets+.swift
[40/61] Compiling EFFoundation UIFont+.swift
[41/61] Compiling EFFoundation UIGestureRecognizer+.swift
[42/61] Compiling EFFoundation UIImage+.swift
[43/61] Compiling EFFoundation UIImageView+.swift
[44/61] Compiling EFFoundation CIColor+.swift
[45/61] Compiling EFFoundation CIImage+.swift
[46/61] Compiling EFFoundation Character+.swift
[47/61] Compiling EFFoundation Comparable+.swift
[48/61] Compiling EFFoundation Data+.swift
[49/61] Compiling EFFoundation Date+.swift
[50/61] Compiling EFFoundation CATransaction+.swift
[51/61] Compiling EFFoundation CGColor+.swift
[52/61] Compiling EFFoundation CGFloat+.swift
[53/61] Compiling EFFoundation CGImage.swift
[54/61] Compiling EFFoundation CGRect+.swift
[55/61] Compiling EFFoundation CGSize+.swift
[56/61] Compiling EFFoundation Int32+.swift
[57/61] Compiling EFFoundation Int64+.swift
[58/61] Compiling EFFoundation Int8+.swift
[59/61] Compiling EFFoundation NSColor+.swift
[60/61] Compiling EFFoundation NSImage+.swift
[61/61] Compiling EFFoundation NSString+.swift
Build complete! (6.26s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "EFFoundation",
  "name" : "EFFoundation",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "11.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "tvos",
      "version" : "11.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "EFFoundation",
      "targets" : [
        "EFFoundation"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "EFFoundation",
      "module_type" : "SwiftTarget",
      "name" : "EFFoundation",
      "path" : "EFFoundation/Core",
      "product_memberships" : [
        "EFFoundation"
      ],
      "sources" : [
        "DataStructure/BitSet.swift",
        "DataStructure/Deque.swift",
        "DataStructure/LinkedList.swift",
        "DataStructure/Queue.swift",
        "DataStructure/Stack.swift",
        "DataStructure/Tree.swift",
        "EFFoundation.swift",
        "Extension/Array+.swift",
        "Extension/ArraySlice+.swift",
        "Extension/BinaryFloatingPoint+.swift",
        "Extension/BinaryInteger+.swift",
        "Extension/Bool+.swift",
        "Extension/CATransaction+.swift",
        "Extension/CGColor+.swift",
        "Extension/CGFloat+.swift",
        "Extension/CGImage.swift",
        "Extension/CGRect+.swift",
        "Extension/CGSize+.swift",
        "Extension/CIColor+.swift",
        "Extension/CIImage+.swift",
        "Extension/Character+.swift",
        "Extension/Comparable+.swift",
        "Extension/Data+.swift",
        "Extension/Date+.swift",
        "Extension/Dictionary+.swift",
        "Extension/DispatchQueue+.swift",
        "Extension/Double+.swift",
        "Extension/Float+.swift",
        "Extension/Int+.swift",
        "Extension/Int16+.swift",
        "Extension/Int32+.swift",
        "Extension/Int64+.swift",
        "Extension/Int8+.swift",
        "Extension/NSColor+.swift",
        "Extension/NSImage+.swift",
        "Extension/NSString+.swift",
        "Extension/String+.swift",
        "Extension/TimeInterval+.swift",
        "Extension/UIApplication+.swift",
        "Extension/UIButton+.swift",
        "Extension/UICollectionView+.swift",
        "Extension/UIColor+.swift",
        "Extension/UIControl+.swift",
        "Extension/UIEdgeInsets+.swift",
        "Extension/UIFont+.swift",
        "Extension/UIGestureRecognizer+.swift",
        "Extension/UIImage+.swift",
        "Extension/UIImageView+.swift",
        "Extension/UINavigationController+.swift",
        "Extension/UIRectCorner+.swift",
        "Extension/UIView+.swift",
        "Extension/UIViewController+.swift",
        "Extension/UInt+.swift",
        "Extension/UInt16+.swift",
        "Extension/UInt32+.swift",
        "Extension/UInt64+.swift",
        "Extension/UInt8+.swift",
        "Extension/URL+.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.