This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Outlaw with Swift 6.0 for Linux.

Swift 6 data race errors: 46

Build Command

bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

11 |
12 | public extension Dictionary {
13 |     static func mappedValue<Value: ValueWithContext>(from object: Any, using context: Value.Context) throws -> [Key: Value] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyDictionary = object as? [Key: Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:27:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Value: ValueWithContext>(from object: Any, using context: Value.Context) throws -> [Key: Value?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyDictionary = object as? [Key: Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:44:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Dictionary {
44 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value, Value.Context) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyDictionary = object as? [Key: Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:58:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value?, Value.Context) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyDictionary = object as? [Key: Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:70:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value, Value.Context) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyDictionary = object as? [Key: Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:84:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value?, Value.Context) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyDictionary = object as? [Key: Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Set {
13 |     static func mappedValue<Element: ValueWithContext>(from object: Any, using context: Element.Context) throws -> Set<Element> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         let anyArray: [Element] = try [Element].mappedValue(from: object, using: context)
15 |         return Set<Element>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:23:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
21 |
22 | public extension Set {
23 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |         let anyArray: [T] = try [Element].mappedValue(from: object, using: context, with: transform)
25 |         return Set<T>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:28:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |     }
27 |
28 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
29 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, using: context, with: transform)
30 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:33:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
31 |     }
32 |
33 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
34 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, using: context, with: transform)
35 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:38:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
36 |     }
37 |
38 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, using: context, with: transform)
40 |         return Set<T>(anyArray.compactMap { $0 })
[11/50] Compiling Outlaw URL+Value.swift
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Array {
13 |     static func mappedValue<Element: ValueWithContext>(from object: Any, using context: Element.Context) throws -> [Element] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyArray = object as? [Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:27:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Element: ValueWithContext>(from object: Any, using context: Element.Context) throws -> [Element?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyArray = object as? [Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:44:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Array {
44 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyArray = object as? [Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:58:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyArray = object as? [Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:70:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyArray = object as? [Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:84:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyArray = object as? [Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:13:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Dictionary {
13 |     static func mappedValue<Value: ValueWithContext>(from object: Any, using context: Value.Context) throws -> [Key: Value] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyDictionary = object as? [Key: Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:27:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Value: ValueWithContext>(from object: Any, using context: Value.Context) throws -> [Key: Value?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyDictionary = object as? [Key: Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:44:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Dictionary {
44 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value, Value.Context) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyDictionary = object as? [Key: Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:58:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value?, Value.Context) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyDictionary = object as? [Key: Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:70:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value, Value.Context) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyDictionary = object as? [Key: Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:84:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value?, Value.Context) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyDictionary = object as? [Key: Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Set {
13 |     static func mappedValue<Element: ValueWithContext>(from object: Any, using context: Element.Context) throws -> Set<Element> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         let anyArray: [Element] = try [Element].mappedValue(from: object, using: context)
15 |         return Set<Element>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:23:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
21 |
22 | public extension Set {
23 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |         let anyArray: [T] = try [Element].mappedValue(from: object, using: context, with: transform)
25 |         return Set<T>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:28:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |     }
27 |
28 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
29 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, using: context, with: transform)
30 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:33:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
31 |     }
32 |
33 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
34 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, using: context, with: transform)
35 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:38:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
36 |     }
37 |
38 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, using: context, with: transform)
40 |         return Set<T>(anyArray.compactMap { $0 })
[12/50] Compiling Outlaw Array+ValueWithContext.swift
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Array {
13 |     static func mappedValue<Element: ValueWithContext>(from object: Any, using context: Element.Context) throws -> [Element] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyArray = object as? [Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:27:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Element: ValueWithContext>(from object: Any, using context: Element.Context) throws -> [Element?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyArray = object as? [Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:44:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Array {
44 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyArray = object as? [Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:58:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyArray = object as? [Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:70:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyArray = object as? [Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:84:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyArray = object as? [Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:13:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Dictionary {
13 |     static func mappedValue<Value: ValueWithContext>(from object: Any, using context: Value.Context) throws -> [Key: Value] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyDictionary = object as? [Key: Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:27:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Value: ValueWithContext>(from object: Any, using context: Value.Context) throws -> [Key: Value?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyDictionary = object as? [Key: Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:44:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Dictionary {
44 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value, Value.Context) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyDictionary = object as? [Key: Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:58:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value?, Value.Context) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyDictionary = object as? [Key: Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:70:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value, Value.Context) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyDictionary = object as? [Key: Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:84:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value?, Value.Context) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyDictionary = object as? [Key: Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Set {
13 |     static func mappedValue<Element: ValueWithContext>(from object: Any, using context: Element.Context) throws -> Set<Element> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         let anyArray: [Element] = try [Element].mappedValue(from: object, using: context)
15 |         return Set<Element>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:23:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
21 |
22 | public extension Set {
23 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |         let anyArray: [T] = try [Element].mappedValue(from: object, using: context, with: transform)
25 |         return Set<T>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:28:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |     }
27 |
28 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
29 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, using: context, with: transform)
30 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:33:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
31 |     }
32 |
33 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
34 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, using: context, with: transform)
35 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:38:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
36 |     }
37 |
38 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, using: context, with: transform)
40 |         return Set<T>(anyArray.compactMap { $0 })
[13/50] Compiling Outlaw Dictionary+ValueWithContext.swift
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Array {
13 |     static func mappedValue<Element: ValueWithContext>(from object: Any, using context: Element.Context) throws -> [Element] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyArray = object as? [Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:27:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Element: ValueWithContext>(from object: Any, using context: Element.Context) throws -> [Element?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyArray = object as? [Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:44:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Array {
44 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyArray = object as? [Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:58:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyArray = object as? [Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:70:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyArray = object as? [Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:84:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyArray = object as? [Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:13:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Dictionary {
13 |     static func mappedValue<Value: ValueWithContext>(from object: Any, using context: Value.Context) throws -> [Key: Value] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyDictionary = object as? [Key: Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:27:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Value: ValueWithContext>(from object: Any, using context: Value.Context) throws -> [Key: Value?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyDictionary = object as? [Key: Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:44:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Dictionary {
44 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value, Value.Context) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyDictionary = object as? [Key: Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:58:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value?, Value.Context) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyDictionary = object as? [Key: Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:70:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value, Value.Context) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyDictionary = object as? [Key: Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:84:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value?, Value.Context) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyDictionary = object as? [Key: Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Set {
13 |     static func mappedValue<Element: ValueWithContext>(from object: Any, using context: Element.Context) throws -> Set<Element> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         let anyArray: [Element] = try [Element].mappedValue(from: object, using: context)
15 |         return Set<Element>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:23:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
21 |
22 | public extension Set {
23 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |         let anyArray: [T] = try [Element].mappedValue(from: object, using: context, with: transform)
25 |         return Set<T>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:28:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |     }
27 |
28 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
29 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, using: context, with: transform)
30 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:33:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
31 |     }
32 |
33 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
34 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, using: context, with: transform)
35 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:38:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
36 |     }
37 |
38 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, using: context, with: transform)
40 |         return Set<T>(anyArray.compactMap { $0 })
[14/50] Compiling Outlaw Set+ValueWithContext.swift
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Array {
13 |     static func mappedValue<Element: ValueWithContext>(from object: Any, using context: Element.Context) throws -> [Element] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyArray = object as? [Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:27:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Element: ValueWithContext>(from object: Any, using context: Element.Context) throws -> [Element?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyArray = object as? [Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:44:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Array {
44 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyArray = object as? [Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:58:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyArray = object as? [Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:70:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyArray = object as? [Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Array+ValueWithContext.swift:84:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyArray = object as? [Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:13:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Dictionary {
13 |     static func mappedValue<Value: ValueWithContext>(from object: Any, using context: Value.Context) throws -> [Key: Value] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyDictionary = object as? [Key: Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:27:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Value: ValueWithContext>(from object: Any, using context: Value.Context) throws -> [Key: Value?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyDictionary = object as? [Key: Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:44:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Dictionary {
44 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value, Value.Context) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyDictionary = object as? [Key: Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:58:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value?, Value.Context) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyDictionary = object as? [Key: Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:70:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value, Value.Context) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyDictionary = object as? [Key: Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Dictionary+ValueWithContext.swift:84:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Value: ValueWithContext, T>(from object: Any, using context: Value.Context, with transform:(Value?, Value.Context) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyDictionary = object as? [Key: Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Set {
13 |     static func mappedValue<Element: ValueWithContext>(from object: Any, using context: Element.Context) throws -> Set<Element> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         let anyArray: [Element] = try [Element].mappedValue(from: object, using: context)
15 |         return Set<Element>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:23:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
21 |
22 | public extension Set {
23 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |         let anyArray: [T] = try [Element].mappedValue(from: object, using: context, with: transform)
25 |         return Set<T>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:28:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |     }
27 |
28 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
29 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, using: context, with: transform)
30 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:33:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
31 |     }
32 |
33 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element, Element.Context) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
34 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, using: context, with: transform)
35 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/ValueWithContext/Set+ValueWithContext.swift:38:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
36 |     }
37 |
38 |     static func mappedValue<Element: ValueWithContext, T>(from object: Any, using context: Element.Context, with transform:(Element?, Element.Context) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, using: context, with: transform)
40 |         return Set<T>(anyArray.compactMap { $0 })
[15/50] Compiling Outlaw IndexExtractable.swift
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:13:10: warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 |
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:13:10: warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 |
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:14:10: warning: associated value 'keyNotFound(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
14 |     case keyNotFound(key: Key)
   |          `- warning: associated value 'keyNotFound(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:15:10: warning: associated value 'nullValueWithKey(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
13 |     case typeMismatch(expected: Any, actual: Any)
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
   |          `- warning: associated value 'nullValueWithKey(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:17:10: warning: associated value 'indexNotFound(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
   |          `- warning: associated value 'indexNotFound(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:18:10: warning: associated value 'nullValueWithIndex(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
   |          `- warning: associated value 'nullValueWithIndex(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
20 |
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
[16/50] Compiling Outlaw OutlawError.swift
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:13:10: warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 |
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:13:10: warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 |
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:14:10: warning: associated value 'keyNotFound(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
14 |     case keyNotFound(key: Key)
   |          `- warning: associated value 'keyNotFound(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:15:10: warning: associated value 'nullValueWithKey(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
13 |     case typeMismatch(expected: Any, actual: Any)
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
   |          `- warning: associated value 'nullValueWithKey(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:17:10: warning: associated value 'indexNotFound(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
   |          `- warning: associated value 'indexNotFound(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:18:10: warning: associated value 'nullValueWithIndex(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
   |          `- warning: associated value 'nullValueWithIndex(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
20 |
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
[17/50] Compiling Outlaw JSON.swift
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:13:10: warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 |
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:13:10: warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 |
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:14:10: warning: associated value 'keyNotFound(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
14 |     case keyNotFound(key: Key)
   |          `- warning: associated value 'keyNotFound(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:15:10: warning: associated value 'nullValueWithKey(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
13 |     case typeMismatch(expected: Any, actual: Any)
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
   |          `- warning: associated value 'nullValueWithKey(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:17:10: warning: associated value 'indexNotFound(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
   |          `- warning: associated value 'indexNotFound(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:18:10: warning: associated value 'nullValueWithIndex(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
   |          `- warning: associated value 'nullValueWithIndex(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
20 |
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
[18/50] Compiling Outlaw JSONCollection.swift
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:13:10: warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 |
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:13:10: warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 |
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:14:10: warning: associated value 'keyNotFound(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
14 |     case keyNotFound(key: Key)
   |          `- warning: associated value 'keyNotFound(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:15:10: warning: associated value 'nullValueWithKey(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
13 |     case typeMismatch(expected: Any, actual: Any)
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
   |          `- warning: associated value 'nullValueWithKey(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:17:10: warning: associated value 'indexNotFound(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
   |          `- warning: associated value 'indexNotFound(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:18:10: warning: associated value 'nullValueWithIndex(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
   |          `- warning: associated value 'nullValueWithIndex(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
20 |
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
[19/50] Compiling Outlaw JSONSerializable.swift
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:13:10: warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 |
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:13:10: warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 |
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:14:10: warning: associated value 'keyNotFound(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
14 |     case keyNotFound(key: Key)
   |          `- warning: associated value 'keyNotFound(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:15:10: warning: associated value 'nullValueWithKey(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
13 |     case typeMismatch(expected: Any, actual: Any)
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
   |          `- warning: associated value 'nullValueWithKey(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:17:10: warning: associated value 'indexNotFound(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
   |          `- warning: associated value 'indexNotFound(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:18:10: warning: associated value 'nullValueWithIndex(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
   |          `- warning: associated value 'nullValueWithIndex(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
20 |
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
[20/50] Compiling Outlaw Deserializable.swift
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:13:10: warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 |
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:13:10: warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 |
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatch(expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:14:10: warning: associated value 'keyNotFound(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
12 | public enum OutlawError: Error, CustomStringConvertible, CustomDebugStringConvertible {
13 |     case typeMismatch(expected: Any, actual: Any)
14 |     case keyNotFound(key: Key)
   |          `- warning: associated value 'keyNotFound(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:15:10: warning: associated value 'nullValueWithKey(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
13 |     case typeMismatch(expected: Any, actual: Any)
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
   |          `- warning: associated value 'nullValueWithKey(key:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Key'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/Extractable/Key.swift:13:17: note: protocol 'Key' does not conform to the 'Sendable' protocol
11 |
12 |
13 | public protocol Key {
   |                 `- note: protocol 'Key' does not conform to the 'Sendable' protocol
14 |     var outlawKey: String { get }
15 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:16:10: warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |     case keyNotFound(key: Key)
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithKey(key:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:17:10: warning: associated value 'indexNotFound(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
15 |     case nullValueWithKey(key: Key)
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
   |          `- warning: associated value 'indexNotFound(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:18:10: warning: associated value 'nullValueWithIndex(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
16 |     case typeMismatchWithKey(key: Key, expected: Any, actual: Any)
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
   |          `- warning: associated value 'nullValueWithIndex(index:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
20 |
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'any Index'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
/host/spi-builder-workspace/Sources/Outlaw/Core/IndexExtractable/Index.swift:12:17: note: protocol 'Index' does not conform to the 'Sendable' protocol
10 |
11 |
12 | public protocol Index {
   |                 `- note: protocol 'Index' does not conform to the 'Sendable' protocol
13 |     var outlawIndex: Int { get }
14 | }
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
/host/spi-builder-workspace/Sources/Outlaw/Core/OutlawError.swift:19:10: warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |     case indexNotFound(index: Index)
18 |     case nullValueWithIndex(index: Index)
19 |     case typeMismatchWithIndex(index: Index, expected: Any, actual: Any)
   |          `- warning: associated value 'typeMismatchWithIndex(index:expected:actual:)' of 'Sendable'-conforming enum 'OutlawError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |
21 |     public var description: String {
[21/50] Compiling Outlaw ValueWithContext.swift
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Array {
13 |     static func mappedValue<Element: Value>(from object: Any) throws -> [Element] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyArray = object as? [Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:27:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Element: Value>(from object: Any) throws -> [Element?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyArray = object as? [Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:44:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Array {
44 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyArray = object as? [Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:58:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyArray = object as? [Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:70:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyArray = object as? [Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:84:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyArray = object as? [Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
[22/50] Compiling Outlaw Array.swift
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Array {
13 |     static func mappedValue<Element: Value>(from object: Any) throws -> [Element] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyArray = object as? [Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:27:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Element: Value>(from object: Any) throws -> [Element?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyArray = object as? [Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:44:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Array {
44 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyArray = object as? [Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:58:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyArray = object as? [Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:70:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyArray = object as? [Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:84:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyArray = object as? [Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
[23/50] Compiling Outlaw Dictionary.swift
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Array {
13 |     static func mappedValue<Element: Value>(from object: Any) throws -> [Element] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyArray = object as? [Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:27:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Element: Value>(from object: Any) throws -> [Element?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyArray = object as? [Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:44:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Array {
44 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyArray = object as? [Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:58:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyArray = object as? [Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:70:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyArray = object as? [Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:84:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyArray = object as? [Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
[24/50] Compiling Outlaw Set.swift
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Array {
13 |     static func mappedValue<Element: Value>(from object: Any) throws -> [Element] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyArray = object as? [Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:27:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Element: Value>(from object: Any) throws -> [Element?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyArray = object as? [Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:44:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Array {
44 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyArray = object as? [Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:58:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyArray = object as? [Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:70:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyArray = object as? [Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:84:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyArray = object as? [Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
[25/50] Compiling Outlaw Array+Value.swift
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Array {
13 |     static func mappedValue<Element: Value>(from object: Any) throws -> [Element] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyArray = object as? [Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:27:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Element: Value>(from object: Any) throws -> [Element?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyArray = object as? [Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:44:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Array {
44 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyArray = object as? [Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:58:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyArray = object as? [Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:70:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyArray = object as? [Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:84:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyArray = object as? [Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
[26/50] Compiling Outlaw Bool+Value.swift
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Array {
13 |     static func mappedValue<Element: Value>(from object: Any) throws -> [Element] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyArray = object as? [Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:27:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Element: Value>(from object: Any) throws -> [Element?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyArray = object as? [Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:44:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Array {
44 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyArray = object as? [Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:58:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) throws -> T) throws -> [T] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyArray = object as? [Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:70:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyArray = object as? [Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Array+Value.swift:84:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) -> T?) throws -> [T?] {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyArray = object as? [Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
[27/50] Compiling Outlaw IndexDeserializableWithContext.swift
[28/50] Compiling Outlaw IndexSerializable.swift
[29/50] Compiling Outlaw IndexSerializableWithContext.swift
[30/50] Compiling Outlaw IndexUpdatable.swift
[31/50] Compiling Outlaw IndexUpdatableWithContext.swift
[32/50] Compiling Outlaw Value.swift
[33/50] Compiling Outlaw Date+Value.swift
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:13:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Dictionary {
13 |     static func mappedValue<Value: Outlaw.Value>(from object: Any) throws -> [Key: Value] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyDictionary = object as? [Key: Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:27:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Value: Outlaw.Value>(from object: Any) throws -> [Key: Value?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyDictionary = object as? [Key: Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:44:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Dictionary {
44 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyDictionary = object as? [Key: Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:58:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value?) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyDictionary = object as? [Key: Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:70:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyDictionary = object as? [Key: Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:84:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value?) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyDictionary = object as? [Key: Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Set {
13 |     static func mappedValue<Element: Value>(from object: Any) throws -> Set<Element> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         let anyArray: [Element] = try [Element].mappedValue(from: object)
15 |         return Set<Element>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:23:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
21 |
22 | public extension Set {
23 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |         let anyArray: [T] = try [Element].mappedValue(from: object, with: transform)
25 |         return Set<T>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:28:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |     }
27 |
28 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
29 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
30 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:33:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
31 |     }
32 |
33 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
34 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
35 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:38:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
36 |     }
37 |
38 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
40 |         return Set<T>(anyArray.compactMap { $0 })
[34/50] Compiling Outlaw Dictionary+Value.swift
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:13:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Dictionary {
13 |     static func mappedValue<Value: Outlaw.Value>(from object: Any) throws -> [Key: Value] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyDictionary = object as? [Key: Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:27:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Value: Outlaw.Value>(from object: Any) throws -> [Key: Value?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyDictionary = object as? [Key: Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:44:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Dictionary {
44 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyDictionary = object as? [Key: Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:58:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value?) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyDictionary = object as? [Key: Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:70:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyDictionary = object as? [Key: Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:84:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value?) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyDictionary = object as? [Key: Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Set {
13 |     static func mappedValue<Element: Value>(from object: Any) throws -> Set<Element> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         let anyArray: [Element] = try [Element].mappedValue(from: object)
15 |         return Set<Element>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:23:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
21 |
22 | public extension Set {
23 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |         let anyArray: [T] = try [Element].mappedValue(from: object, with: transform)
25 |         return Set<T>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:28:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |     }
27 |
28 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
29 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
30 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:33:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
31 |     }
32 |
33 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
34 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
35 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:38:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
36 |     }
37 |
38 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
40 |         return Set<T>(anyArray.compactMap { $0 })
[35/50] Compiling Outlaw Float+Value.swift
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:13:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Dictionary {
13 |     static func mappedValue<Value: Outlaw.Value>(from object: Any) throws -> [Key: Value] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyDictionary = object as? [Key: Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:27:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Value: Outlaw.Value>(from object: Any) throws -> [Key: Value?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyDictionary = object as? [Key: Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:44:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Dictionary {
44 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyDictionary = object as? [Key: Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:58:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value?) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyDictionary = object as? [Key: Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:70:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyDictionary = object as? [Key: Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:84:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value?) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyDictionary = object as? [Key: Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Set {
13 |     static func mappedValue<Element: Value>(from object: Any) throws -> Set<Element> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         let anyArray: [Element] = try [Element].mappedValue(from: object)
15 |         return Set<Element>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:23:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
21 |
22 | public extension Set {
23 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |         let anyArray: [T] = try [Element].mappedValue(from: object, with: transform)
25 |         return Set<T>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:28:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |     }
27 |
28 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
29 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
30 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:33:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
31 |     }
32 |
33 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
34 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
35 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:38:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
36 |     }
37 |
38 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
40 |         return Set<T>(anyArray.compactMap { $0 })
[36/50] Compiling Outlaw Int+Value.swift
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:13:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Dictionary {
13 |     static func mappedValue<Value: Outlaw.Value>(from object: Any) throws -> [Key: Value] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyDictionary = object as? [Key: Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:27:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Value: Outlaw.Value>(from object: Any) throws -> [Key: Value?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyDictionary = object as? [Key: Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:44:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Dictionary {
44 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyDictionary = object as? [Key: Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:58:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value?) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyDictionary = object as? [Key: Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:70:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyDictionary = object as? [Key: Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:84:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value?) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyDictionary = object as? [Key: Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Set {
13 |     static func mappedValue<Element: Value>(from object: Any) throws -> Set<Element> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         let anyArray: [Element] = try [Element].mappedValue(from: object)
15 |         return Set<Element>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:23:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
21 |
22 | public extension Set {
23 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |         let anyArray: [T] = try [Element].mappedValue(from: object, with: transform)
25 |         return Set<T>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:28:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |     }
27 |
28 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
29 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
30 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:33:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
31 |     }
32 |
33 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
34 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
35 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:38:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
36 |     }
37 |
38 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
40 |         return Set<T>(anyArray.compactMap { $0 })
[37/50] Compiling Outlaw Set+Value.swift
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:13:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Dictionary {
13 |     static func mappedValue<Value: Outlaw.Value>(from object: Any) throws -> [Key: Value] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyDictionary = object as? [Key: Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:27:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Value: Outlaw.Value>(from object: Any) throws -> [Key: Value?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyDictionary = object as? [Key: Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:44:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Dictionary {
44 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyDictionary = object as? [Key: Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:58:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value?) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyDictionary = object as? [Key: Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:70:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyDictionary = object as? [Key: Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:84:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value?) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyDictionary = object as? [Key: Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Set {
13 |     static func mappedValue<Element: Value>(from object: Any) throws -> Set<Element> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         let anyArray: [Element] = try [Element].mappedValue(from: object)
15 |         return Set<Element>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:23:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
21 |
22 | public extension Set {
23 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |         let anyArray: [T] = try [Element].mappedValue(from: object, with: transform)
25 |         return Set<T>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:28:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |     }
27 |
28 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
29 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
30 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:33:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
31 |     }
32 |
33 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
34 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
35 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:38:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
36 |     }
37 |
38 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
40 |         return Set<T>(anyArray.compactMap { $0 })
[38/50] Compiling Outlaw String+Value.swift
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:13:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Dictionary {
13 |     static func mappedValue<Value: Outlaw.Value>(from object: Any) throws -> [Key: Value] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         guard let anyDictionary = object as? [Key: Any] else {
15 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:27:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static func mappedValue<Value: Outlaw.Value>(from object: Any) throws -> [Key: Value?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |         guard let anyDictionary = object as? [Key: Any?] else {
29 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:44:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |
43 | public extension Dictionary {
44 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 |         guard let anyDictionary = object as? [Key: Any] else {
46 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:58:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
56 |     }
57 |
58 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value?) throws -> T) throws -> [Key: T] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 |         guard let anyDictionary = object as? [Key: Any?] else {
60 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:70:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
68 |     }
69 |
70 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
71 |         guard let anyDictionary = object as? [Key: Any?] else {
72 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Dictionary+Value.swift:84:29: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
82 |     }
83 |
84 |     static func mappedValue<Value: Outlaw.Value, T>(from object: Any, with transform:(Value?) -> T?) throws -> [Key: T?] {
   |                             `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
85 |         guard let anyDictionary = object as? [Key: Any?] else {
86 |             throw OutlawError.typeMismatch(expected: self, actual: type(of: object))
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:13:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
11 |
12 | public extension Set {
13 |     static func mappedValue<Element: Value>(from object: Any) throws -> Set<Element> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |         let anyArray: [Element] = try [Element].mappedValue(from: object)
15 |         return Set<Element>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:23:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
21 |
22 | public extension Set {
23 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |         let anyArray: [T] = try [Element].mappedValue(from: object, with: transform)
25 |         return Set<T>(anyArray)
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:28:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |     }
27 |
28 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) throws -> T) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
29 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
30 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:33:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
31 |     }
32 |
33 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
34 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
35 |         return Set<T>(anyArray.compactMap { $0 })
/host/spi-builder-workspace/Sources/Outlaw/Types/Value/Set+Value.swift:38:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
36 |     }
37 |
38 |     static func mappedValue<Element: Value, T>(from object: Any, with transform:(Element?) -> T?) throws -> Set<T> {
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |         let anyArray: [T?] = try [Element?].mappedValue(from: object, with: transform)
40 |         return Set<T>(anyArray.compactMap { $0 })
[39/50] Compiling Outlaw Dictionary+map.swift
[40/50] Compiling Outlaw Dictionary+Extractable.swift
[41/50] Compiling Outlaw Extractable+Enum.swift
[42/50] Compiling Outlaw Extractable+Value.swift
[43/50] Compiling Outlaw Extractable+ValueWithContext.swift
[44/50] Compiling Outlaw Extractable.swift
[45/50] Compiling Outlaw Key.swift
[46/50] Compiling Outlaw Array+IndexExtractable.swift
[47/50] Compiling Outlaw Index.swift
[48/50] Compiling Outlaw IndexExtractable+Enum.swift
[49/50] Compiling Outlaw IndexExtractable+Value.swift
[50/50] Compiling Outlaw IndexExtractable+ValueWithContext.swift
Build complete! (11.19s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Outlaw",
  "name" : "Outlaw",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Outlaw",
      "targets" : [
        "Outlaw"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "OutlawTests",
      "module_type" : "SwiftTarget",
      "name" : "OutlawTests",
      "path" : "Tests/OutlawTests",
      "sources" : [
        "ArrayTests.swift",
        "BoolTests.swift",
        "CharacterTests.swift",
        "DateTests.swift",
        "DeserializableTests.swift",
        "DeserializableWithContextTests.swift",
        "DictionaryTests.swift",
        "DoubleTests.swift",
        "EnumTests.swift",
        "FloatTests.swift",
        "Int16Tests.swift",
        "Int32Tests.swift",
        "Int64Tests.swift",
        "Int8Tests.swift",
        "IntTests.swift",
        "OutlawTestCase.swift",
        "SerializableTests.swift",
        "SerializableWithContextTests.swift",
        "SetTests.swift",
        "StringTests.swift",
        "TypesForTests.swift",
        "UInt16Tests.swift",
        "UInt32Tests.swift",
        "UInt64Tests.swift",
        "UInt8Tests.swift",
        "UIntTests.swift",
        "URLTests.swift",
        "UpdatableTests.swift",
        "UpdatableWithContextTests.swift",
        "ValueWithContextTests.swift"
      ],
      "target_dependencies" : [
        "Outlaw"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Outlaw",
      "module_type" : "SwiftTarget",
      "name" : "Outlaw",
      "path" : "Sources/Outlaw",
      "product_memberships" : [
        "Outlaw"
      ],
      "sources" : [
        "Convenience/Dictionary+map.swift",
        "Core/Extractable/Dictionary+Extractable.swift",
        "Core/Extractable/Extractable+Enum.swift",
        "Core/Extractable/Extractable+Value.swift",
        "Core/Extractable/Extractable+ValueWithContext.swift",
        "Core/Extractable/Extractable.swift",
        "Core/Extractable/Key.swift",
        "Core/IndexExtractable/Array+IndexExtractable.swift",
        "Core/IndexExtractable/Index.swift",
        "Core/IndexExtractable/IndexExtractable+Enum.swift",
        "Core/IndexExtractable/IndexExtractable+Value.swift",
        "Core/IndexExtractable/IndexExtractable+ValueWithContext.swift",
        "Core/IndexExtractable/IndexExtractable.swift",
        "Core/OutlawError.swift",
        "JSON/JSON.swift",
        "JSON/JSONCollection.swift",
        "JSON/JSONSerializable.swift",
        "Protocols/Extractable/Deserializable.swift",
        "Protocols/Extractable/DeserializableWithContext.swift",
        "Protocols/Extractable/Serializable.swift",
        "Protocols/Extractable/SerializableWithContext.swift",
        "Protocols/Extractable/Updatable.swift",
        "Protocols/Extractable/UpdatableWithContext.swift",
        "Protocols/IndexExtractable/IndexDeserializable.swift",
        "Protocols/IndexExtractable/IndexDeserializableWithContext.swift",
        "Protocols/IndexExtractable/IndexSerializable.swift",
        "Protocols/IndexExtractable/IndexSerializableWithContext.swift",
        "Protocols/IndexExtractable/IndexUpdatable.swift",
        "Protocols/IndexExtractable/IndexUpdatableWithContext.swift",
        "Protocols/Value.swift",
        "Protocols/ValueWithContext.swift",
        "Types/Array.swift",
        "Types/Dictionary.swift",
        "Types/Set.swift",
        "Types/Value/Array+Value.swift",
        "Types/Value/Bool+Value.swift",
        "Types/Value/Date+Value.swift",
        "Types/Value/Dictionary+Value.swift",
        "Types/Value/Float+Value.swift",
        "Types/Value/Int+Value.swift",
        "Types/Value/Set+Value.swift",
        "Types/Value/String+Value.swift",
        "Types/Value/UInt+Value.swift",
        "Types/Value/URL+Value.swift",
        "Types/ValueWithContext/Array+ValueWithContext.swift",
        "Types/ValueWithContext/Dictionary+ValueWithContext.swift",
        "Types/ValueWithContext/Set+ValueWithContext.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.