The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of ReerKit, reference main (02b2df), with Swift 6.1 for macOS (SPM) on 1 Jun 2025 08:42:40 UTC.

Swift 6 data race errors: 23

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:81:27: warning: static property 'letters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
    |                           |- warning: static property 'letters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'letters' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
 83 |
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:82:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
    |                           |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |         private static let numbersString = "0123456789"
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Once.swift:38:17: warning: var 'tokens' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | }
37 |
38 | fileprivate var tokens = Set<OnceToken>()
   |                 |- warning: var 'tokens' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                 |- note: convert 'tokens' to a 'let' constant to make 'Sendable' shared state immutable
   |                 |- note: add '@MainActor' to make var 'tokens' part of global actor 'MainActor'
   |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | #if os(Linux)
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Once.swift:43:17: warning: let 'lock' is not concurrency-safe because non-'Sendable' type 'UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
41 | fileprivate let lock = MutexLock()
42 | #else
43 | fileprivate let lock = UnfairLock()
   |                 |- warning: let 'lock' is not concurrency-safe because non-'Sendable' type 'UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
   |                 |- note: add '@MainActor' to make let 'lock' part of global actor 'MainActor'
   |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | #endif
45 |
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Lock/UnfairLock.swift:26:20: note: class 'UnfairLock' does not conform to the 'Sendable' protocol
24 |
25 | /// ReerKit: A wrapper of `os_unfair_lock`
26 | public final class UnfairLock {
   |                    `- note: class 'UnfairLock' does not conform to the 'Sendable' protocol
27 |     private var unfairLock = os_unfair_lock()
28 |
[138/142] Compiling ReerKit NanoID.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:44:23: warning: static property 'defaultRandomizer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 42 |
 43 |     #if canImport(Security)
 44 |     public static var defaultRandomizer: Randomizer = SecureRandomizer()
    |                       |- warning: static property 'defaultRandomizer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'defaultRandomizer' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'defaultRandomizer' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 |     #else
 46 |     public static var defaultRandomizer: Randomizer = IntRandomizer()
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:78:27: warning: static property 'numbers' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 76 |         }
 77 |
 78 |         public static let numbers = Self(numbersString)
    |                           |- warning: static property 'numbers' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'numbers' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:79:27: warning: static property 'lowercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 77 |
 78 |         public static let numbers = Self(numbersString)
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
    |                           |- warning: static property 'lowercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'lowercaseLetters' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:80:27: warning: static property 'uppercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 78 |         public static let numbers = Self(numbersString)
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
    |                           |- warning: static property 'uppercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'uppercaseLetters' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:81:27: warning: static property 'letters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
    |                           |- warning: static property 'letters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'letters' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
 83 |
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:82:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
    |                           |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |         private static let numbersString = "0123456789"
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Once.swift:38:17: warning: var 'tokens' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | }
37 |
38 | fileprivate var tokens = Set<OnceToken>()
   |                 |- warning: var 'tokens' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                 |- note: convert 'tokens' to a 'let' constant to make 'Sendable' shared state immutable
   |                 |- note: add '@MainActor' to make var 'tokens' part of global actor 'MainActor'
   |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | #if os(Linux)
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Once.swift:43:17: warning: let 'lock' is not concurrency-safe because non-'Sendable' type 'UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
41 | fileprivate let lock = MutexLock()
42 | #else
43 | fileprivate let lock = UnfairLock()
   |                 |- warning: let 'lock' is not concurrency-safe because non-'Sendable' type 'UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
   |                 |- note: add '@MainActor' to make let 'lock' part of global actor 'MainActor'
   |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | #endif
45 |
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Lock/UnfairLock.swift:26:20: note: class 'UnfairLock' does not conform to the 'Sendable' protocol
24 |
25 | /// ReerKit: A wrapper of `os_unfair_lock`
26 | public final class UnfairLock {
   |                    `- note: class 'UnfairLock' does not conform to the 'Sendable' protocol
27 |     private var unfairLock = os_unfair_lock()
28 |
[139/142] Compiling ReerKit Once.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:44:23: warning: static property 'defaultRandomizer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 42 |
 43 |     #if canImport(Security)
 44 |     public static var defaultRandomizer: Randomizer = SecureRandomizer()
    |                       |- warning: static property 'defaultRandomizer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'defaultRandomizer' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'defaultRandomizer' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 |     #else
 46 |     public static var defaultRandomizer: Randomizer = IntRandomizer()
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:78:27: warning: static property 'numbers' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 76 |         }
 77 |
 78 |         public static let numbers = Self(numbersString)
    |                           |- warning: static property 'numbers' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'numbers' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:79:27: warning: static property 'lowercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 77 |
 78 |         public static let numbers = Self(numbersString)
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
    |                           |- warning: static property 'lowercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'lowercaseLetters' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:80:27: warning: static property 'uppercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 78 |         public static let numbers = Self(numbersString)
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
    |                           |- warning: static property 'uppercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'uppercaseLetters' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:81:27: warning: static property 'letters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
    |                           |- warning: static property 'letters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'letters' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
 83 |
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:82:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
    |                           |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |         private static let numbersString = "0123456789"
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Once.swift:38:17: warning: var 'tokens' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | }
37 |
38 | fileprivate var tokens = Set<OnceToken>()
   |                 |- warning: var 'tokens' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                 |- note: convert 'tokens' to a 'let' constant to make 'Sendable' shared state immutable
   |                 |- note: add '@MainActor' to make var 'tokens' part of global actor 'MainActor'
   |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | #if os(Linux)
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Once.swift:43:17: warning: let 'lock' is not concurrency-safe because non-'Sendable' type 'UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
41 | fileprivate let lock = MutexLock()
42 | #else
43 | fileprivate let lock = UnfairLock()
   |                 |- warning: let 'lock' is not concurrency-safe because non-'Sendable' type 'UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
   |                 |- note: add '@MainActor' to make let 'lock' part of global actor 'MainActor'
   |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | #endif
45 |
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Lock/UnfairLock.swift:26:20: note: class 'UnfairLock' does not conform to the 'Sendable' protocol
24 |
25 | /// ReerKit: A wrapper of `os_unfair_lock`
26 | public final class UnfairLock {
   |                    `- note: class 'UnfairLock' does not conform to the 'Sendable' protocol
27 |     private var unfairLock = os_unfair_lock()
28 |
[140/142] Compiling ReerKit Clamped.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:44:23: warning: static property 'defaultRandomizer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 42 |
 43 |     #if canImport(Security)
 44 |     public static var defaultRandomizer: Randomizer = SecureRandomizer()
    |                       |- warning: static property 'defaultRandomizer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'defaultRandomizer' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'defaultRandomizer' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 |     #else
 46 |     public static var defaultRandomizer: Randomizer = IntRandomizer()
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:78:27: warning: static property 'numbers' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 76 |         }
 77 |
 78 |         public static let numbers = Self(numbersString)
    |                           |- warning: static property 'numbers' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'numbers' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:79:27: warning: static property 'lowercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 77 |
 78 |         public static let numbers = Self(numbersString)
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
    |                           |- warning: static property 'lowercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'lowercaseLetters' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:80:27: warning: static property 'uppercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 78 |         public static let numbers = Self(numbersString)
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
    |                           |- warning: static property 'uppercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'uppercaseLetters' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:81:27: warning: static property 'letters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
    |                           |- warning: static property 'letters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'letters' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
 83 |
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:82:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
    |                           |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |         private static let numbersString = "0123456789"
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Once.swift:38:17: warning: var 'tokens' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | }
37 |
38 | fileprivate var tokens = Set<OnceToken>()
   |                 |- warning: var 'tokens' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                 |- note: convert 'tokens' to a 'let' constant to make 'Sendable' shared state immutable
   |                 |- note: add '@MainActor' to make var 'tokens' part of global actor 'MainActor'
   |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | #if os(Linux)
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Once.swift:43:17: warning: let 'lock' is not concurrency-safe because non-'Sendable' type 'UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
41 | fileprivate let lock = MutexLock()
42 | #else
43 | fileprivate let lock = UnfairLock()
   |                 |- warning: let 'lock' is not concurrency-safe because non-'Sendable' type 'UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
   |                 |- note: add '@MainActor' to make let 'lock' part of global actor 'MainActor'
   |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | #endif
45 |
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Lock/UnfairLock.swift:26:20: note: class 'UnfairLock' does not conform to the 'Sendable' protocol
24 |
25 | /// ReerKit: A wrapper of `os_unfair_lock`
26 | public final class UnfairLock {
   |                    `- note: class 'UnfairLock' does not conform to the 'Sendable' protocol
27 |     private var unfairLock = os_unfair_lock()
28 |
[141/142] Compiling ReerKit Locked.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:44:23: warning: static property 'defaultRandomizer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 42 |
 43 |     #if canImport(Security)
 44 |     public static var defaultRandomizer: Randomizer = SecureRandomizer()
    |                       |- warning: static property 'defaultRandomizer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'defaultRandomizer' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'defaultRandomizer' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 |     #else
 46 |     public static var defaultRandomizer: Randomizer = IntRandomizer()
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:78:27: warning: static property 'numbers' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 76 |         }
 77 |
 78 |         public static let numbers = Self(numbersString)
    |                           |- warning: static property 'numbers' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'numbers' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:79:27: warning: static property 'lowercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 77 |
 78 |         public static let numbers = Self(numbersString)
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
    |                           |- warning: static property 'lowercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'lowercaseLetters' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:80:27: warning: static property 'uppercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 78 |         public static let numbers = Self(numbersString)
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
    |                           |- warning: static property 'uppercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'uppercaseLetters' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:81:27: warning: static property 'letters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
    |                           |- warning: static property 'letters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'letters' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
 83 |
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:82:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
    |                           |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |         private static let numbersString = "0123456789"
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Once.swift:38:17: warning: var 'tokens' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | }
37 |
38 | fileprivate var tokens = Set<OnceToken>()
   |                 |- warning: var 'tokens' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                 |- note: convert 'tokens' to a 'let' constant to make 'Sendable' shared state immutable
   |                 |- note: add '@MainActor' to make var 'tokens' part of global actor 'MainActor'
   |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | #if os(Linux)
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Once.swift:43:17: warning: let 'lock' is not concurrency-safe because non-'Sendable' type 'UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
41 | fileprivate let lock = MutexLock()
42 | #else
43 | fileprivate let lock = UnfairLock()
   |                 |- warning: let 'lock' is not concurrency-safe because non-'Sendable' type 'UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
   |                 |- note: add '@MainActor' to make let 'lock' part of global actor 'MainActor'
   |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | #endif
45 |
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Lock/UnfairLock.swift:26:20: note: class 'UnfairLock' does not conform to the 'Sendable' protocol
24 |
25 | /// ReerKit: A wrapper of `os_unfair_lock`
26 | public final class UnfairLock {
   |                    `- note: class 'UnfairLock' does not conform to the 'Sendable' protocol
27 |     private var unfairLock = os_unfair_lock()
28 |
[142/142] Compiling ReerKit RWLocked.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:44:23: warning: static property 'defaultRandomizer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 42 |
 43 |     #if canImport(Security)
 44 |     public static var defaultRandomizer: Randomizer = SecureRandomizer()
    |                       |- warning: static property 'defaultRandomizer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'defaultRandomizer' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'defaultRandomizer' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 |     #else
 46 |     public static var defaultRandomizer: Randomizer = IntRandomizer()
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:78:27: warning: static property 'numbers' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 76 |         }
 77 |
 78 |         public static let numbers = Self(numbersString)
    |                           |- warning: static property 'numbers' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'numbers' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:79:27: warning: static property 'lowercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 77 |
 78 |         public static let numbers = Self(numbersString)
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
    |                           |- warning: static property 'lowercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'lowercaseLetters' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:80:27: warning: static property 'uppercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 78 |         public static let numbers = Self(numbersString)
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
    |                           |- warning: static property 'uppercaseLetters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'uppercaseLetters' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:81:27: warning: static property 'letters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 79 |         public static let lowercaseLetters = Self(lowercaseLettersString)
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
    |                           |- warning: static property 'letters' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'letters' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
 83 |
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/NanoID.swift:82:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 | extension NanoID {
 51 |     public struct Alphabet {
    |                   `- note: consider making struct 'Alphabet' conform to the 'Sendable' protocol
 52 |         let characters: [Character]
 53 |
    :
 80 |         public static let uppercaseLetters = Self(uppercaseLettersString)
 81 |         public static let letters = Self(lowercaseLettersString, uppercaseLettersString)
 82 |         public static let `default` = Self(lowercaseLettersString, uppercaseLettersString, "_-")
    |                           |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'NanoID.Alphabet' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |         private static let numbersString = "0123456789"
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Once.swift:38:17: warning: var 'tokens' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | }
37 |
38 | fileprivate var tokens = Set<OnceToken>()
   |                 |- warning: var 'tokens' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                 |- note: convert 'tokens' to a 'let' constant to make 'Sendable' shared state immutable
   |                 |- note: add '@MainActor' to make var 'tokens' part of global actor 'MainActor'
   |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | #if os(Linux)
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Once.swift:43:17: warning: let 'lock' is not concurrency-safe because non-'Sendable' type 'UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
41 | fileprivate let lock = MutexLock()
42 | #else
43 | fileprivate let lock = UnfairLock()
   |                 |- warning: let 'lock' is not concurrency-safe because non-'Sendable' type 'UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
   |                 |- note: add '@MainActor' to make let 'lock' part of global actor 'MainActor'
   |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | #endif
45 |
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Utility/Lock/UnfairLock.swift:26:20: note: class 'UnfairLock' does not conform to the 'Sendable' protocol
24 |
25 | /// ReerKit: A wrapper of `os_unfair_lock`
26 | public final class UnfairLock {
   |                    `- note: class 'UnfairLock' does not conform to the 'Sendable' protocol
27 |     private var unfairLock = os_unfair_lock()
28 |
Build complete! (8.58s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ReerKit",
  "name" : "ReerKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "watchos",
      "version" : "4.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "ReerKit",
      "targets" : [
        "ReerKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ReerKitTests",
      "module_type" : "SwiftTarget",
      "name" : "ReerKitTests",
      "path" : "Tests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ResourcesTests/Resources/TestImage.png",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ResourcesTests/Resources/TestStoryboard.storyboard",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ResourcesTests/Resources/UICollectionViewCell.xib",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ResourcesTests/Resources/UIImageView.xib",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ResourcesTests/Resources/UITableViewCell.xib",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ResourcesTests/Resources/UITableViewHeaderFooterView.xib",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ResourcesTests/Resources/big_buck_bunny_720p_1mb.mp4",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ResourcesTests/Resources/test.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ResourcesTests/Resources/test.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ResourcesTests/Resources/test_gray.png",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "CoreAnimationTests/CAAnimationExtensionsTests.swift",
        "CoreAnimationTests/CAGradientLayerExtensionsTests.swift",
        "CoreAnimationTests/CATransform3DExtensionsTests.swift",
        "CoreGraphicsTests/CGAffineTransformExtensionsTests.swift",
        "CoreGraphicsTests/CGColorExtensionsTests.swift",
        "CoreGraphicsTests/CGFloatExtensionsTests.swift",
        "CoreGraphicsTests/CGPointExtensionsTests.swift",
        "CoreGraphicsTests/CGRectExtensionsTests.swift",
        "CoreGraphicsTests/CGSizeExtensionsTests.swift",
        "CoreGraphicsTests/CGVectorExtensionsTests.swift",
        "DispatchTests/DispatchTests.swift",
        "FoundationTests/CalendarExtensionsTests.swift",
        "FoundationTests/ContiguousBytesExtensions.swift",
        "FoundationTests/DataExtensionsTests.swift",
        "FoundationTests/DateExtensionsTests.swift",
        "FoundationTests/FileManagerExtensionsTests.swift",
        "FoundationTests/LocalExtensionsTests.swift",
        "FoundationTests/NSAttributedStringExtensionsTests.swift",
        "FoundationTests/NSObjectExtensionsTests.swift",
        "FoundationTests/NSPredicateExtensionsTests.swift",
        "FoundationTests/NSRegularExpressionExtensionsTests.swift",
        "FoundationTests/NotificationCenterExtensionsTests.swift",
        "FoundationTests/TimerExtensionsTests.swift",
        "FoundationTests/URLExtensionsTests.swift",
        "FoundationTests/URLRequestExtensionsTests.swift",
        "ResourcesTests/TestViewController.swift",
        "SharedTests/ColorExtensionsTests.swift",
        "SharedTests/EdgeInsetsExtensionsTests.swift",
        "StandardLibraryTests/AnyObjectExtensionsTests.swift",
        "StandardLibraryTests/ArrayExtensionsTests.swift",
        "StandardLibraryTests/BinaryFloatingPointExtensionsTests.swift",
        "StandardLibraryTests/BinaryIntegerExtensionsTests.swift",
        "StandardLibraryTests/BoolExtensionsTests.swift",
        "StandardLibraryTests/CharacterExtensionsTests.swift",
        "StandardLibraryTests/CollectionExtensionsTests.swift",
        "StandardLibraryTests/ComparableExtensionsTests.swift",
        "StandardLibraryTests/DecodableExtensionsTests.swift",
        "StandardLibraryTests/DictionaryExtensionsTests.swift",
        "StandardLibraryTests/DoubleExtensionsTests.swift",
        "StandardLibraryTests/FloatExtensionsTests.swift",
        "StandardLibraryTests/FloatingPointExtensionsTests.swift",
        "StandardLibraryTests/IntExtensionsTests.swift",
        "StandardLibraryTests/MutableCollectionExtensionsTests.swift",
        "StandardLibraryTests/OptionSetExtensionsTests.swift",
        "StandardLibraryTests/OptionalExtensionsTests.swift",
        "StandardLibraryTests/RangeReplaceableCollectionExtensionsTests.swift",
        "StandardLibraryTests/SequenceExtensionsTests.swift",
        "StandardLibraryTests/SetExtensionsTests.swift",
        "StandardLibraryTests/SignedIntegerExtensionsTests.swift",
        "StandardLibraryTests/SignedNumericExtensionsTests.swift",
        "StandardLibraryTests/StringExtensionsTests.swift",
        "StandardLibraryTests/StringProtocolExtensionsTests.swift",
        "StandardLibraryTests/TestHelpers.swift",
        "UIKitTests/UIAlertControllerExtensionsTests.swift",
        "UIKitTests/UIBarButtonItemExtensionsTests.swift",
        "UIKitTests/UIBezierPathExtensionsTests.swift",
        "UIKitTests/UIButtonExtensionsTests.swift",
        "UIKitTests/UICollectionViewExtensionsTests.swift",
        "UIKitTests/UIDeviceExtensionsTests.swift",
        "UIKitTests/UIFontExtensionsTests.swift",
        "UIKitTests/UIGestureRecognizerExtensionsTests.swift",
        "UIKitTests/UIImageExtensionsTests.swift",
        "UIKitTests/UIImageViewExtensionsTests.swift",
        "UIKitTests/UILabelExtensionsTests.swift",
        "UIKitTests/UINavigationBarExtensionsTests.swift",
        "UIKitTests/UINavigationControllerExtensionsTests.swift",
        "UIKitTests/UINavigationItemExtensionsTests.swift",
        "UIKitTests/UIRefreshControlExtensionTests.swift",
        "UIKitTests/UIScrollViewExtensionsTest.swift",
        "UIKitTests/UISearchBarExtensionsTests.swift",
        "UIKitTests/UISegmentedControlExtensionsTests.swift",
        "UIKitTests/UISliderExtensionsTests.swift",
        "UIKitTests/UIStackViewExtensionsTest.swift",
        "UIKitTests/UIStoryboardExtensionsTests.swift",
        "UIKitTests/UISwitchExtensionsTests.swift",
        "UIKitTests/UITabBarExtensionsTests.swift",
        "UIKitTests/UITableViewExtensionsTests.swift",
        "UIKitTests/UITextFieldExtensionsTests.swift",
        "UIKitTests/UITextViewExtensionsTests.swift",
        "UIKitTests/UIViewControllerExtensionsTests.swift",
        "UIKitTests/UIViewExtensionsTests.swift",
        "UIKitTests/UIWindowExtensionsTests.swift",
        "UtilityTests/CountdownTimerTests.swift",
        "UtilityTests/DataStructuresTest.swift",
        "UtilityTests/DebouncerTests.swift",
        "UtilityTests/DeinitObserverTests.swift",
        "UtilityTests/GlobalFunctionsTests.swift",
        "UtilityTests/InvocationTests.swift",
        "UtilityTests/MathFunctionsTests.swift",
        "UtilityTests/MemoryTests.swift",
        "UtilityTests/NanoIDTests.swift",
        "UtilityTests/OnceTests.swift",
        "UtilityTests/PropertyWrappersTests.swift",
        "UtilityTests/RETimerTests.swift",
        "UtilityTests/ReachabilityTests.swift",
        "UtilityTests/ReadWriteLockTests.swift",
        "UtilityTests/ThrottlerTests.swift",
        "UtilityTests/TypeNameDescribableTests.swift",
        "UtilityTests/UnfairLockTests.swift",
        "UtilityTests/WeakTests.swift",
        "WebKitTests/WKWebViewExtensionsTests.swift",
        "XCTest/XCTestExtensions.swift"
      ],
      "target_dependencies" : [
        "ReerKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ReerKit",
      "module_type" : "SwiftTarget",
      "name" : "ReerKit",
      "path" : "Sources/ReerKit",
      "product_memberships" : [
        "ReerKit"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Resources/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "CoreAnimation/CAAnimation+REExtensions.swift",
        "CoreAnimation/CAGradientLayer+REExtensions.swift",
        "CoreAnimation/CALayer+REExtensions.swift",
        "CoreAnimation/CATransform3D+REExtensions.swift",
        "CoreGraphics/CGAffineTransform+REExtensions.swift",
        "CoreGraphics/CGColor+REExtensions.swift",
        "CoreGraphics/CGFloat+REExtensions.swift",
        "CoreGraphics/CGPoint+REExtensions.swift",
        "CoreGraphics/CGRect+REExtensions.swift",
        "CoreGraphics/CGSize+REExtensions.swift",
        "CoreGraphics/CGVector+REExtensions.swift",
        "Dispatch/DispatchQueue+REExtensions.swift",
        "Foundation/Bundle+REExtensions.swift",
        "Foundation/Calendar+REExtensions.swift",
        "Foundation/ContiguousBytes+REExtensions.swift",
        "Foundation/Data+REExtensions.swift",
        "Foundation/Date+REExtensions.swift",
        "Foundation/FileManager+REExtensions.swift",
        "Foundation/Locale+REExtensions.swift",
        "Foundation/NSAttributedString+REExtensions.swift",
        "Foundation/NSObject+REExtensions.swift",
        "Foundation/NSPredicate+REExtensions.swift",
        "Foundation/NSRange+REExtensions.swift",
        "Foundation/NSRegularExpression+REExtensions.swift",
        "Foundation/NotificationCenter+REExtensions.swift",
        "Foundation/Timer+REExtensions.swift",
        "Foundation/URL+REExtensions.swift",
        "Foundation/URLRequest+REExtensions.swift",
        "General/ReerKit.swift",
        "Internal/Punycode.swift",
        "Internal/RSA.swift",
        "Shared/Color+REExtensions.swift",
        "Shared/EdgeInsets+REExtensions.swift",
        "Shared/Font+REExtensions.swift",
        "StandardLibrary/AnyObjectExtensions/AnyObjectExtensionable.swift",
        "StandardLibrary/AnyObjectExtensions/Associatable.swift",
        "StandardLibrary/AnyObjectExtensions/DeinitObservable.swift",
        "StandardLibrary/AnyObjectExtensions/OnceExecutable.swift",
        "StandardLibrary/AnyObjectExtensions/Swizzlable.swift",
        "StandardLibrary/Array+REExtensions.swift",
        "StandardLibrary/BinaryFloatingPoint+REExtensions.swift",
        "StandardLibrary/BinaryInteger+REExtensions.swift",
        "StandardLibrary/Bool+REExtensions.swift",
        "StandardLibrary/Character+REExtensions.swift",
        "StandardLibrary/Collection+REExtensions.swift",
        "StandardLibrary/Comparable+REExtensions.swift",
        "StandardLibrary/Decodable+REExtensions.swift",
        "StandardLibrary/Dictionary+REExtensions.swift",
        "StandardLibrary/Double+REExtensions.swift",
        "StandardLibrary/Float+REExtensions.swift",
        "StandardLibrary/FloatingPoint+REExtensions.swift",
        "StandardLibrary/Int+REExtensions.swift",
        "StandardLibrary/MutableCollection+REExtensions.swift",
        "StandardLibrary/OptionSet+REExtensions.swift",
        "StandardLibrary/Optional+REExtensions.swift",
        "StandardLibrary/Range+REExtensions.swift",
        "StandardLibrary/RangeReplaceableCollection+REExtensions.swift",
        "StandardLibrary/Sequence+REExtensions.swift",
        "StandardLibrary/Set+REExtensions.swift",
        "StandardLibrary/SignedInteger+REExtensions.swift",
        "StandardLibrary/SignedNumeric+REExtensions.swift",
        "StandardLibrary/StdlibProtocolWrappers.swift",
        "StandardLibrary/String+REExtensions.swift",
        "StandardLibrary/StringProtocol+REExtensions.swift",
        "UIKit/UIAlertController+REExtensions.swift",
        "UIKit/UIApplication+REExtensions.swift",
        "UIKit/UIBarButtonItem+REExtensions.swift",
        "UIKit/UIBezierPath+REExtensions.swift",
        "UIKit/UIButton+REExtensions.swift",
        "UIKit/UICollectionView+REExtensions.swift",
        "UIKit/UIControl+REExtensions.swift",
        "UIKit/UIDevice+REExtensions.swift",
        "UIKit/UIFont+REExtensions.swift",
        "UIKit/UIGestureRecognizer+REExtensions.swift",
        "UIKit/UIImage+REExtensions.swift",
        "UIKit/UIImageView+REExtensions.swift",
        "UIKit/UILabel+REExtensions.swift",
        "UIKit/UINavigationBar+REExtensions.swift",
        "UIKit/UINavigationController+REExtensions.swift",
        "UIKit/UINavigationItem+REExtensions.swift",
        "UIKit/UIRefreshControl+REExtensions.swift",
        "UIKit/UIResponder+REExtensions.swift",
        "UIKit/UIScreen+REExtensions.swift",
        "UIKit/UIScrollView+REExtensions.swift",
        "UIKit/UISearchBar+REExtensions.swift",
        "UIKit/UISegmentedControl+REExtensions.swift",
        "UIKit/UISlider+REExtensions.swift",
        "UIKit/UIStackView+REExtensions.swift",
        "UIKit/UIStoryboard+REExtensions.swift",
        "UIKit/UISwitch+REExtensions.swift",
        "UIKit/UITabBar+REExtensions.swift",
        "UIKit/UITableView+REExtensions.swift",
        "UIKit/UITextField+REExtensions.swift",
        "UIKit/UITextView+REExtensions.swift",
        "UIKit/UIView+REExtensions.swift",
        "UIKit/UIViewController+REExtensions.swift",
        "UIKit/UIWindow+REExtensions.swift",
        "Utility/CountdownTimer.swift",
        "Utility/DataStructure/BinaryTree.swift",
        "Utility/DataStructure/BoundedQueue.swift",
        "Utility/DataStructure/LinkedList.swift",
        "Utility/DataStructure/OrderedDictionary.swift",
        "Utility/DataStructure/OrderedSet.swift",
        "Utility/DataStructure/Queue.swift",
        "Utility/DataStructure/Stack.swift",
        "Utility/DataStructure/Tree.swift",
        "Utility/Debouncer.swift",
        "Utility/Debug/FPSLabel.swift",
        "Utility/Debug/Memory.swift",
        "Utility/DeinitObserver.swift",
        "Utility/GlobalFunctions.swift",
        "Utility/Invocation.swift",
        "Utility/KeyboardManager.swift",
        "Utility/Keychain.swift",
        "Utility/Lock/MutexLock.swift",
        "Utility/Lock/ReadWriteLock.swift",
        "Utility/Lock/Synchronizing.swift",
        "Utility/Lock/UnfairLock.swift",
        "Utility/Math/LinearFunction.swift",
        "Utility/MulticastDelegate.swift",
        "Utility/NanoID.swift",
        "Utility/Once.swift",
        "Utility/PropertyWrapper/Clamped.swift",
        "Utility/PropertyWrapper/Locked.swift",
        "Utility/PropertyWrapper/RWLocked.swift",
        "Utility/PropertyWrapper/Rounded.swift",
        "Utility/PropertyWrapper/Trimmed.swift",
        "Utility/RETimer.swift",
        "Utility/Reachability.swift",
        "Utility/Throttler.swift",
        "Utility/TypeNameDescribable.swift",
        "Utility/Vibrator.swift",
        "Utility/Weak/Weak.swift",
        "Utility/Weak/WeakMap.swift",
        "Utility/Weak/WeakProxy.swift",
        "Utility/Weak/WeakSet.swift",
        "WebKit/WKWebView+REExtensions.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/reers/reerkit/main
Repository:               reers/ReerKit
Swift version used:       6.1
Target:                   ReerKit
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            4633b45fc732d8c55568be09dd852f9dc1582c25 -> FETCH_HEAD
HEAD is now at 4633b45 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'ReerKit'...
Finished extracting symbol information for 'ReerKit'. (6.42s)
Building documentation for 'ReerKit'...
warning: 'addShadow(ofColor:radius:offset:opacity:path:)-1uvt9' doesn't exist at '/ReerKit/Reer'
 --> Catalog/CoreAnimation/CALayerExt_doc.md:5:10-5:62
3 | ## Topics
4 |
5 + - ``Reer/addShadow(ofColor:radius:offset:opacity:path:)-1uvt9``
6 |
7 | - ``Reer/x-26v7l``
warning: 'x-26v7l' doesn't exist at '/ReerKit/Reer'
 --> Catalog/CoreAnimation/CALayerExt_doc.md:7:10-7:17
5 | - ``Reer/addShadow(ofColor:radius:offset:opacity:path:)-1uvt9``
6 |
7 + - ``Reer/x-26v7l``
8 |
9 | - ``Reer/y-gpsg``
warning: 'y-gpsg' doesn't exist at '/ReerKit/Reer'
  --> Catalog/CoreAnimation/CALayerExt_doc.md:9:10-9:16
7  | - ``Reer/x-26v7l``
8  |
9  + - ``Reer/y-gpsg``
10 |
11 | - ``Reer/width-5oxqj``
warning: 'width-5oxqj' doesn't exist at '/ReerKit/Reer'
  --> Catalog/CoreAnimation/CALayerExt_doc.md:11:10-11:21
9  | - ``Reer/y-gpsg``
10 |
11 + - ``Reer/width-5oxqj``
12 |
13 | - ``Reer/height-1sdfy``
warning: 'height-1sdfy' doesn't exist at '/ReerKit/Reer'
  --> Catalog/CoreAnimation/CALayerExt_doc.md:13:10-13:22
11 | - ``Reer/width-5oxqj``
12 |
13 + - ``Reer/height-1sdfy``
   |          ╰─suggestion: Replace 'height-1sdfy' with 'height(forWidth:)'
14 |
15 | - ``Reer/left-43nrp``
warning: 'left-43nrp' doesn't exist at '/ReerKit/Reer'
  --> Catalog/CoreAnimation/CALayerExt_doc.md:15:10-15:20
13 | - ``Reer/height-1sdfy``
14 |
15 + - ``Reer/left-43nrp``
16 |
17 | - ``Reer/right-50y92``
warning: 'right-50y92' doesn't exist at '/ReerKit/Reer'
  --> Catalog/CoreAnimation/CALayerExt_doc.md:17:10-17:21
15 | - ``Reer/left-43nrp``
16 |
17 + - ``Reer/right-50y92``
   |          ╰─suggestion: Replace 'right-50y92' with 'brightness'
18 |
19 | - ``Reer/top-2gpyd``
warning: 'top-2gpyd' doesn't exist at '/ReerKit/Reer'
  --> Catalog/CoreAnimation/CALayerExt_doc.md:19:10-19:19
17 | - ``Reer/right-50y92``
18 |
19 + - ``Reer/top-2gpyd``
20 |
21 | - ``Reer/bottom-471ll``
warning: 'bottom-471ll' doesn't exist at '/ReerKit/Reer'
  --> Catalog/CoreAnimation/CALayerExt_doc.md:21:10-21:22
19 | - ``Reer/top-2gpyd``
20 |
21 + - ``Reer/bottom-471ll``
22 |
23 | - ``Reer/centerX-73dy1``
warning: 'centerX-73dy1' doesn't exist at '/ReerKit/Reer'
  --> Catalog/CoreAnimation/CALayerExt_doc.md:23:10-23:23
21 | - ``Reer/bottom-471ll``
22 |
23 + - ``Reer/centerX-73dy1``
   |          ╰─suggestion: Replace 'centerX-73dy1' with 'center'
24 |
25 | - ``Reer/centerY-7zbf3``
warning: 'centerY-7zbf3' doesn't exist at '/ReerKit/Reer'
  --> Catalog/CoreAnimation/CALayerExt_doc.md:25:10-25:23
23 | - ``Reer/centerX-73dy1``
24 |
25 + - ``Reer/centerY-7zbf3``
   |          ╰─suggestion: Replace 'centerY-7zbf3' with 'center'
26 |
27 | - ``Reer/origin-1uvt8``
warning: 'origin-1uvt8' doesn't exist at '/ReerKit/Reer'
  --> Catalog/CoreAnimation/CALayerExt_doc.md:27:10-27:22
25 | - ``Reer/centerY-7zbf3``
26 |
27 + - ``Reer/origin-1uvt8``
28 |
29 | - ``Reer/size-95end``
warning: 'size-95end' doesn't exist at '/ReerKit/Reer'
  --> Catalog/CoreAnimation/CALayerExt_doc.md:29:10-29:20
27 | - ``Reer/origin-1uvt8``
28 |
29 + - ``Reer/size-95end``
warning: 'uiColor' doesn't exist at '/ReerKit/Reer'
 --> Catalog/CoreGraphics/CGColorExt_doc.md:5:10-5:17
3 | ## Topics
4 |
5 + - ``Reer/uiColor``
  |          ╰─suggestion: Replace 'uiColor' with 'nsColor'
6 |
7 | - ``Reer/nsColor``
warning: '*(_:_:)' is ambiguous at '/ReerKit/CoreFoundation/CGPoint'
  --> Catalog/CoreGraphics/CGPointExt_doc.md:21:28-21:35
19 | - ``CoreFoundation/CGPoint/-=(_:_:)``
20 |
21 + - ``CoreFoundation/CGPoint/*(_:_:)``
   |                                   ├─suggestion: Insert '-(CGPoint,_)' for 'static func * (point: CGPoint, scalar: CGFloat) -> CGPoint'
   |                                   ╰─suggestion: Insert '-(CGFloat,_)' for 'static func * (scalar: CGFloat, point: CGPoint) -> CGPoint'
22 |
23 | - ``CoreFoundation/CGPoint/*(_:_:)``
warning: '*(_:_:)' is ambiguous at '/ReerKit/CoreFoundation/CGPoint'
  --> Catalog/CoreGraphics/CGPointExt_doc.md:23:28-23:35
21 | - ``CoreFoundation/CGPoint/*(_:_:)``
22 |
23 + - ``CoreFoundation/CGPoint/*(_:_:)``
   |                                   ├─suggestion: Insert '-(CGPoint,_)' for 'static func * (point: CGPoint, scalar: CGFloat) -> CGPoint'
   |                                   ╰─suggestion: Insert '-(CGFloat,_)' for 'static func * (scalar: CGFloat, point: CGPoint) -> CGPoint'
24 |
25 | - ``CoreFoundation/CGPoint/*=(_:_:)``
warning: 'fit(inRect:mode:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/CoreGraphics/CGSizeExt_doc.md:15:10-15:27
13 | - ``Reer/aspectFill(to:)``
14 |
15 + - ``Reer/fit(inRect:mode:)``
16 |
17 | - ``CoreFoundation/CGSize/+(_:_:)``
warning: '+(_:_:)' is ambiguous at '/ReerKit/CoreFoundation/CGSize'
  --> Catalog/CoreGraphics/CGSizeExt_doc.md:17:27-17:34
15 | - ``Reer/fit(inRect:mode:)``
16 |
17 + - ``CoreFoundation/CGSize/+(_:_:)``
   |                                  ├─suggestion: Insert '-(_,CGSize)' for 'static func + (lhs: CGSize, rhs: CGSize) -> CGSize'
   |                                  ╰─suggestion: Insert '-(_,(CGFloat,CGFloat))' for 'static func + (lhs: CGSize, tuple: (width: CGFloat, height: CGFloat)) -> CGSize'
18 |
19 | - ``CoreFoundation/CGSize/+(_:_:)``
warning: '+(_:_:)' is ambiguous at '/ReerKit/CoreFoundation/CGSize'
  --> Catalog/CoreGraphics/CGSizeExt_doc.md:19:27-19:34
17 | - ``CoreFoundation/CGSize/+(_:_:)``
18 |
19 + - ``CoreFoundation/CGSize/+(_:_:)``
   |                                  ├─suggestion: Insert '-(_,CGSize)' for 'static func + (lhs: CGSize, rhs: CGSize) -> CGSize'
   |                                  ╰─suggestion: Insert '-(_,(CGFloat,CGFloat))' for 'static func + (lhs: CGSize, tuple: (width: CGFloat, height: CGFloat)) -> CGSize'
20 |
21 | - ``CoreFoundation/CGSize/+=(_:_:)``
warning: '+=(_:_:)' is ambiguous at '/ReerKit/CoreFoundation/CGSize'
  --> Catalog/CoreGraphics/CGSizeExt_doc.md:21:27-21:35
19 | - ``CoreFoundation/CGSize/+(_:_:)``
20 |
21 + - ``CoreFoundation/CGSize/+=(_:_:)``
   |                                   ├─suggestion: Insert '-(_,CGSize)' for 'static func += (lhs: inout CGSize, rhs: CGSize)'
   |                                   ╰─suggestion: Insert '-(_,(CGFloat,CGFloat))' for 'static func += (lhs: inout CGSize, tuple: (width: CGFloat, height: CGFloat))'
22 |
23 | - ``CoreFoundation/CGSize/+=(_:_:)``
warning: '+=(_:_:)' is ambiguous at '/ReerKit/CoreFoundation/CGSize'
  --> Catalog/CoreGraphics/CGSizeExt_doc.md:23:27-23:35
21 | - ``CoreFoundation/CGSize/+=(_:_:)``
22 |
23 + - ``CoreFoundation/CGSize/+=(_:_:)``
   |                                   ├─suggestion: Insert '-(_,CGSize)' for 'static func += (lhs: inout CGSize, rhs: CGSize)'
   |                                   ╰─suggestion: Insert '-(_,(CGFloat,CGFloat))' for 'static func += (lhs: inout CGSize, tuple: (width: CGFloat, height: CGFloat))'
24 |
25 | - ``CoreFoundation/CGSize/-(_:_:)``
warning: '-(_:_:)' is ambiguous at '/ReerKit/CoreFoundation/CGSize'
  --> Catalog/CoreGraphics/CGSizeExt_doc.md:25:27-25:34
23 | - ``CoreFoundation/CGSize/+=(_:_:)``
24 |
25 + - ``CoreFoundation/CGSize/-(_:_:)``
   |                                  ├─suggestion: Insert '-(_,CGSize)' for 'static func - (lhs: CGSize, rhs: CGSize) -> CGSize'
   |                                  ╰─suggestion: Insert '-(_,(CGFloat,CGFloat))' for 'static func - (lhs: CGSize, tuple: (width: CGFloat, heoght: CGFloat)) -> CGSize'
26 |
27 | - ``CoreFoundation/CGSize/-=(_:_:)``
warning: '-=(_:_:)' is ambiguous at '/ReerKit/CoreFoundation/CGSize'
  --> Catalog/CoreGraphics/CGSizeExt_doc.md:27:27-27:35
25 | - ``CoreFoundation/CGSize/-(_:_:)``
26 |
27 + - ``CoreFoundation/CGSize/-=(_:_:)``
   |                                   ├─suggestion: Insert '-(_,CGSize)' for 'static func -= (lhs: inout CGSize, rhs: CGSize)'
   |                                   ╰─suggestion: Insert '-(_,(CGFloat,CGFloat))' for 'static func -= (lhs: inout CGSize, tuple: (width: CGFloat, height: CGFloat))'
28 |
29 | - ``CoreFoundation/CGSize/-=(_:_:)``
warning: '-=(_:_:)' is ambiguous at '/ReerKit/CoreFoundation/CGSize'
  --> Catalog/CoreGraphics/CGSizeExt_doc.md:29:27-29:35
27 | - ``CoreFoundation/CGSize/-=(_:_:)``
28 |
29 + - ``CoreFoundation/CGSize/-=(_:_:)``
   |                                   ├─suggestion: Insert '-(_,CGSize)' for 'static func -= (lhs: inout CGSize, rhs: CGSize)'
   |                                   ╰─suggestion: Insert '-(_,(CGFloat,CGFloat))' for 'static func -= (lhs: inout CGSize, tuple: (width: CGFloat, height: CGFloat))'
30 |
31 | - ``CoreFoundation/CGSize/*(_:_:)``
warning: '*(_:_:)' is ambiguous at '/ReerKit/CoreFoundation/CGSize'
  --> Catalog/CoreGraphics/CGSizeExt_doc.md:31:27-31:34
29 | - ``CoreFoundation/CGSize/-=(_:_:)``
30 |
31 + - ``CoreFoundation/CGSize/*(_:_:)``
   |                                  ├─suggestion: Insert '-(CGSize,CGSize)' for 'static func * (lhs: CGSize, rhs: CGSize) -> CGSize'
   |                                  ├─suggestion: Insert '-(_,CGFloat)' for 'static func * (lhs: CGSize, scalar: CGFloat) -> CGSize'
   |                                  ╰─suggestion: Insert '-(CGFloat,_)' for 'static func * (scalar: CGFloat, rhs: CGSize) -> CGSize'
32 |
33 | - ``CoreFoundation/CGSize/*(_:_:)``
warning: '*(_:_:)' is ambiguous at '/ReerKit/CoreFoundation/CGSize'
  --> Catalog/CoreGraphics/CGSizeExt_doc.md:33:27-33:34
31 | - ``CoreFoundation/CGSize/*(_:_:)``
32 |
33 + - ``CoreFoundation/CGSize/*(_:_:)``
   |                                  ├─suggestion: Insert '-(CGSize,CGSize)' for 'static func * (lhs: CGSize, rhs: CGSize) -> CGSize'
   |                                  ├─suggestion: Insert '-(_,CGFloat)' for 'static func * (lhs: CGSize, scalar: CGFloat) -> CGSize'
   |                                  ╰─suggestion: Insert '-(CGFloat,_)' for 'static func * (scalar: CGFloat, rhs: CGSize) -> CGSize'
34 |
35 | - ``CoreFoundation/CGSize/*(_:_:)``
warning: '*(_:_:)' is ambiguous at '/ReerKit/CoreFoundation/CGSize'
  --> Catalog/CoreGraphics/CGSizeExt_doc.md:35:27-35:34
33 | - ``CoreFoundation/CGSize/*(_:_:)``
34 |
35 + - ``CoreFoundation/CGSize/*(_:_:)``
   |                                  ├─suggestion: Insert '-(CGSize,CGSize)' for 'static func * (lhs: CGSize, rhs: CGSize) -> CGSize'
   |                                  ├─suggestion: Insert '-(_,CGFloat)' for 'static func * (lhs: CGSize, scalar: CGFloat) -> CGSize'
   |                                  ╰─suggestion: Insert '-(CGFloat,_)' for 'static func * (scalar: CGFloat, rhs: CGSize) -> CGSize'
36 |
37 | - ``CoreFoundation/CGSize/*=(_:_:)``
warning: '*=(_:_:)' is ambiguous at '/ReerKit/CoreFoundation/CGSize'
  --> Catalog/CoreGraphics/CGSizeExt_doc.md:37:27-37:35
35 | - ``CoreFoundation/CGSize/*(_:_:)``
36 |
37 + - ``CoreFoundation/CGSize/*=(_:_:)``
   |                                   ├─suggestion: Insert '-(_,CGSize)' for 'static func *= (lhs: inout CGSize, rhs: CGSize)'
   |                                   ╰─suggestion: Insert '-(_,CGFloat)' for 'static func *= (lhs: inout CGSize, scalar: CGFloat)'
38 |
39 | - ``CoreFoundation/CGSize/*=(_:_:)``
warning: '*=(_:_:)' is ambiguous at '/ReerKit/CoreFoundation/CGSize'
  --> Catalog/CoreGraphics/CGSizeExt_doc.md:39:27-39:35
37 | - ``CoreFoundation/CGSize/*=(_:_:)``
38 |
39 + - ``CoreFoundation/CGSize/*=(_:_:)``
   |                                   ├─suggestion: Insert '-(_,CGSize)' for 'static func *= (lhs: inout CGSize, rhs: CGSize)'
   |                                   ╰─suggestion: Insert '-(_,CGFloat)' for 'static func *= (lhs: inout CGSize, scalar: CGFloat)'
40 |
41 | - ``CoreFoundation/CGSize/re(side:)``
warning: '*(_:_:)' is ambiguous at '/ReerKit/CoreFoundation/CGVector'
  --> Catalog/CoreGraphics/CGVectorExt_doc.md:11:29-11:36
9  | - ``CoreFoundation/CGVector/re(angle:magnitude:)``
10 |
11 + - ``CoreFoundation/CGVector/*(_:_:)``
   |                                    ├─suggestion: Insert '-(CGFloat,_)' for 'static func * (scalar: CGFloat, vector: CGVector) -> CGVector'
   |                                    ╰─suggestion: Insert '-(_,CGFloat)' for 'static func * (vector: CGVector, scalar: CGFloat) -> CGVector'
12 |
13 | - ``CoreFoundation/CGVector/*(_:_:)``
warning: '*(_:_:)' is ambiguous at '/ReerKit/CoreFoundation/CGVector'
  --> Catalog/CoreGraphics/CGVectorExt_doc.md:13:29-13:36
11 | - ``CoreFoundation/CGVector/*(_:_:)``
12 |
13 + - ``CoreFoundation/CGVector/*(_:_:)``
   |                                    ├─suggestion: Insert '-(CGFloat,_)' for 'static func * (scalar: CGFloat, vector: CGVector) -> CGVector'
   |                                    ╰─suggestion: Insert '-(_,CGFloat)' for 'static func * (vector: CGVector, scalar: CGFloat) -> CGVector'
14 |
15 | - ``CoreFoundation/CGVector/*(_:_:)``
warning: '*(_:_:)' is ambiguous at '/ReerKit/CoreFoundation/CGVector'
  --> Catalog/CoreGraphics/CGVectorExt_doc.md:15:29-15:36
13 | - ``CoreFoundation/CGVector/*(_:_:)``
14 |
15 + - ``CoreFoundation/CGVector/*(_:_:)``
   |                                    ├─suggestion: Insert '-(CGFloat,_)' for 'static func * (scalar: CGFloat, vector: CGVector) -> CGVector'
   |                                    ╰─suggestion: Insert '-(_,CGFloat)' for 'static func * (vector: CGVector, scalar: CGFloat) -> CGVector'
16 |
17 | - ``CoreFoundation/CGVector/-(_:_:)``
warning: '-(_:_:)' doesn't exist at '/ReerKit/CoreFoundation/CGVector'
  --> Catalog/CoreGraphics/CGVectorExt_doc.md:17:29-17:36
15 | - ``CoreFoundation/CGVector/*(_:_:)``
16 |
17 + - ``CoreFoundation/CGVector/-(_:_:)``
warning: '+=(_:_:)' is ambiguous at '/ReerKit/Foundation/NSAttributedString'
  --> Catalog/Foundation/NSAttributedStringExt_doc.md:25:35-25:43
23 | ### Operators
24 |
25 + - ``Foundation/NSAttributedString/+=(_:_:)``
   |                                           ├─suggestion: Insert '-(_,NSAttributedString)' for 'static func += (lhs: inout NSAttributedString, rhs: NSAttributedString)'
   |                                           ╰─suggestion: Insert '-(_,String)' for 'static func += (lhs: inout NSAttributedString, rhs: String)'
26 |
27 | - ``Foundation/NSAttributedString/+(_:_:)``
warning: '+(_:_:)' is ambiguous at '/ReerKit/Foundation/NSAttributedString'
  --> Catalog/Foundation/NSAttributedStringExt_doc.md:27:35-27:42
25 | - ``Foundation/NSAttributedString/+=(_:_:)``
26 |
27 + - ``Foundation/NSAttributedString/+(_:_:)``
   |                                          ├─suggestion: Insert '-(_,NSAttributedString)' for 'static func + (lhs: NSAttributedString, rhs: NSAttributedString) -> NSMutableAttributedString'
   |                                          ╰─suggestion: Insert '-(_,String)' for 'static func + (lhs: NSAttributedString, rhs: String) -> NSMutableAttributedString'
28 |
29 | - ``Foundation/NSAttributedString/+=(_:_:)``
warning: '+=(_:_:)' is ambiguous at '/ReerKit/Foundation/NSAttributedString'
  --> Catalog/Foundation/NSAttributedStringExt_doc.md:29:35-29:43
27 | - ``Foundation/NSAttributedString/+(_:_:)``
28 |
29 + - ``Foundation/NSAttributedString/+=(_:_:)``
   |                                           ├─suggestion: Insert '-(_,NSAttributedString)' for 'static func += (lhs: inout NSAttributedString, rhs: NSAttributedString)'
   |                                           ╰─suggestion: Insert '-(_,String)' for 'static func += (lhs: inout NSAttributedString, rhs: String)'
30 |
31 | - ``Foundation/NSAttributedString/+(_:_:)``
warning: '+(_:_:)' is ambiguous at '/ReerKit/Foundation/NSAttributedString'
  --> Catalog/Foundation/NSAttributedStringExt_doc.md:31:35-31:42
29 | - ``Foundation/NSAttributedString/+=(_:_:)``
30 |
31 + - ``Foundation/NSAttributedString/+(_:_:)``
   |                                          ├─suggestion: Insert '-(_,NSAttributedString)' for 'static func + (lhs: NSAttributedString, rhs: NSAttributedString) -> NSMutableAttributedString'
   |                                          ╰─suggestion: Insert '-(_,String)' for 'static func + (lhs: NSAttributedString, rhs: String) -> NSMutableAttributedString'
warning: 'performMethod(_:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/Foundation/NSObjectExt_doc.md:17:10-17:27
15 | - ``Reer/addMethod(_:implementation:)``
16 |
17 + - ``Reer/performMethod(_:)``
   |          ├─suggestion: Replace 'performMethod(_:)' with 'perform(_:)'
   |          ╰─suggestion: Replace 'performMethod(_:)' with 'perform(_:argument1:argument2:)'
warning: 'thumbnail(fromTime:)' doesn't exist at '/ReerKit/ReerForEquatable'
  --> Catalog/Foundation/URLExt_doc.md:17:22-17:42
15 | - ``ReerForEquatable/droppedScheme()``
16 |
17 + - ``ReerForEquatable/thumbnail(fromTime:)``
18 |
19 | - ``ReerReference/appendQueries(_:)``
warning: 'UIKit' doesn't exist at '/ReerKit/ColorExt_doc'
  --> Catalog/Shared/ColorExt_doc.md:33:5-33:10
31 | - ``Reer/blend(with:)``
32 |
33 + - ``UIKit/UIColor/re(hex:alpha:)``
34 |
35 | - ``UIKit/UIColor/re(argbHex:)``
warning: 'UIKit' doesn't exist at '/ReerKit/ColorExt_doc'
  --> Catalog/Shared/ColorExt_doc.md:35:5-35:10
33 | - ``UIKit/UIColor/re(hex:alpha:)``
34 |
35 + - ``UIKit/UIColor/re(argbHex:)``
36 |
37 | - ``UIKit/UIColor/re(red:green:blue:alpha:)``
warning: 'UIKit' doesn't exist at '/ReerKit/ColorExt_doc'
  --> Catalog/Shared/ColorExt_doc.md:37:5-37:10
35 | - ``UIKit/UIColor/re(argbHex:)``
36 |
37 + - ``UIKit/UIColor/re(red:green:blue:alpha:)``
38 |
39 | - ``UIKit/UIColor/re(hexString:alpha:)``
warning: 'UIKit' doesn't exist at '/ReerKit/ColorExt_doc'
  --> Catalog/Shared/ColorExt_doc.md:39:5-39:10
37 | - ``UIKit/UIColor/re(red:green:blue:alpha:)``
38 |
39 + - ``UIKit/UIColor/re(hexString:alpha:)``
40 |
41 | - ``UIKit/UIColor/re(argbHex:)``
warning: 'UIKit' doesn't exist at '/ReerKit/ColorExt_doc'
  --> Catalog/Shared/ColorExt_doc.md:41:5-41:10
39 | - ``UIKit/UIColor/re(hexString:alpha:)``
40 |
41 + - ``UIKit/UIColor/re(argbHex:)``
42 |
43 | - ``UIKit/UIColor/re(argbHexString:)``
warning: 'UIKit' doesn't exist at '/ReerKit/ColorExt_doc'
  --> Catalog/Shared/ColorExt_doc.md:43:5-43:10
41 | - ``UIKit/UIColor/re(argbHex:)``
42 |
43 + - ``UIKit/UIColor/re(argbHexString:)``
44 |
45 | - ``UIKit/UIColor/re(rgbaHex:)``
warning: 'UIKit' doesn't exist at '/ReerKit/ColorExt_doc'
  --> Catalog/Shared/ColorExt_doc.md:45:5-45:10
43 | - ``UIKit/UIColor/re(argbHexString:)``
44 |
45 + - ``UIKit/UIColor/re(rgbaHex:)``
46 |
47 | - ``UIKit/UIColor/re(rgbaHexString:)``
warning: 'UIKit' doesn't exist at '/ReerKit/ColorExt_doc'
  --> Catalog/Shared/ColorExt_doc.md:47:5-47:10
45 | - ``UIKit/UIColor/re(rgbaHex:)``
46 |
47 + - ``UIKit/UIColor/re(rgbaHexString:)``
48 |
49 | - ``UIKit/UIColor/re(light:dark:)``
warning: 'UIKit' doesn't exist at '/ReerKit/ColorExt_doc'
  --> Catalog/Shared/ColorExt_doc.md:49:5-49:10
47 | - ``UIKit/UIColor/re(rgbaHexString:)``
48 |
49 + - ``UIKit/UIColor/re(light:dark:)``
warning: 'UIKit' doesn't exist at '/ReerKit/EdgeInsetsExt_doc'
  --> Catalog/Shared/EdgeInsetsExt_doc.md:19:5-19:10
17 | - ``ReerForEquatable/insetBy(bottom:)``
18 |
19 + - ``UIKit/UIEdgeInsets/re(inset:)``
20 |
21 | ### Operators
warning: 'UIKit' doesn't exist at '/ReerKit/EdgeInsetsExt_doc'
  --> Catalog/Shared/EdgeInsetsExt_doc.md:23:5-23:10
21 | ### Operators
22 |
23 + - ``UIKit/UIEdgeInsets/+(_:_:)``
24 |
25 | - ``UIKit/UIEdgeInsets/+=(_:_:)``
warning: 'UIKit' doesn't exist at '/ReerKit/EdgeInsetsExt_doc'
  --> Catalog/Shared/EdgeInsetsExt_doc.md:25:5-25:10
23 | - ``UIKit/UIEdgeInsets/+(_:_:)``
24 |
25 + - ``UIKit/UIEdgeInsets/+=(_:_:)``
warning: 'subscript(index:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/StandardLibrary/CollectionExt_doc.md:9:10-9:27
7  | - ``Reer/forEachInParallel(_:)``
8  |
9  + - ``Reer/subscript(index:)``
   |          ╰─suggestion: Replace 'subscript(index:)' with 'subscript(_:default:)'
10 |
11 | - ``Reer/group(by:)``
warning: 'height(forWidth:font:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/StandardLibrary/StringExt_doc.md:65:10-65:32
63 | - ``Reer/cgFloat(locale:)``
64 |
65 + - ``Reer/height(forWidth:font:)``
   |          ╰─suggestion: Replace 'height(forWidth:font:)' with 'height(forWidth:)'
66 |
67 | - ``Reer/singleLineWidth(font:)``
warning: 'singleLineWidth(font:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/StandardLibrary/StringExt_doc.md:67:10-67:32
65 | - ``Reer/height(forWidth:font:)``
66 |
67 + - ``Reer/singleLineWidth(font:)``
   |          ╰─suggestion: Replace 'singleLineWidth(font:)' with 'singleLineWidth()'
68 |
69 | - ``Reer/date``
warning: 'isSpelledCorrectly' doesn't exist at '/ReerKit/Reer'
  --> Catalog/StandardLibrary/StringExt_doc.md:87:10-87:28
85 | - ``Reer/isWhitespace``
86 |
87 + - ``Reer/isSpelledCorrectly``
88 |
89 | - ``Reer/lines()``
warning: 'subscript(index:)->Character' doesn't exist at '/ReerKit/Reer'
   --> Catalog/StandardLibrary/StringExt_doc.md:101:10-101:38
99  | - ``Reer/toSlug()``
100 |
101 + - ``Reer/subscript(index:)->Character``
    |          ├─suggestion: Replace 'subscript(index:)->Character' with 'subscript(_:)'
    |          ╰─suggestion: Replace 'subscript(index:)->Character' with 'subscript(_:default:)'
102 |
103 | - ``Reer/subscript(range:)``
warning: 'subscript(range:)' doesn't exist at '/ReerKit/Reer'
   --> Catalog/StandardLibrary/StringExt_doc.md:103:10-103:27
101 | - ``Reer/subscript(index:)->Character``
102 |
103 + - ``Reer/subscript(range:)``
    |          ╰─suggestion: Replace 'subscript(range:)' with 'subscript(_:default:)'
104 |
105 | - ``Reer/copyToPasteboard()``
warning: 'subscript(bounds:)' doesn't exist at '/ReerKit/Reer'
   --> Catalog/StandardLibrary/StringExt_doc.md:189:10-189:28
187 | - ``Reer/appendingPathExtension(_:)``
188 |
189 + - ``Reer/subscript(bounds:)``
    |          ╰─suggestion: Replace 'subscript(bounds:)' with 'subscript(_:default:)'
190 |
191 | - ``Reer/with(attributes:)-2v5kn``
warning: 'show(animated:vibrate:completion:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIAlertControllerExt_doc.md:5:10-5:44
3 | ## Topics
4 |
5 + - ``Reer/show(animated:vibrate:completion:)``
6 |
7 | - ``Reer/addAction(title:style:isEnabled:handler:)``
warning: 'addAction(title:style:isEnabled:handler:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIAlertControllerExt_doc.md:7:10-7:51
5 | - ``Reer/show(animated:vibrate:completion:)``
6 |
7 + - ``Reer/addAction(title:style:isEnabled:handler:)``
8 |
9 | - ``Reer/addTextField(text:placeholder:editingChangedTarget:editingChangedSelector:)``
warning: 'addTextField(text:placeholder:editingChangedTarget:editingChangedSelector:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIAlertControllerExt_doc.md:9:10-9:85
7  | - ``Reer/addAction(title:style:isEnabled:handler:)``
8  |
9  + - ``Reer/addTextField(text:placeholder:editingChangedTarget:editingChangedSelector:)``
10 |
11 | - ``UIKit/UIAlertController/re(title:message:preferredStyle:tintColor:actions:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UIAlertControllerExt_doc'
  --> Catalog/UIKit/UIAlertControllerExt_doc.md:11:5-11:10
9  | - ``Reer/addTextField(text:placeholder:editingChangedTarget:editingChangedSelector:)``
10 |
11 + - ``UIKit/UIAlertController/re(title:message:preferredStyle:tintColor:actions:)``
12 |
13 | - ``UIKit/UIAlertController/re(title:message:defaultActionButtonTitle:tintColor:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UIAlertControllerExt_doc'
  --> Catalog/UIKit/UIAlertControllerExt_doc.md:13:5-13:10
11 | - ``UIKit/UIAlertController/re(title:message:preferredStyle:tintColor:actions:)``
12 |
13 + - ``UIKit/UIAlertController/re(title:message:defaultActionButtonTitle:tintColor:)``
14 |
15 | - ``UIKit/UIAlertController/re(title:error:defaultActionButtonTitle:preferredStyle:tintColor:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UIAlertControllerExt_doc'
  --> Catalog/UIKit/UIAlertControllerExt_doc.md:15:5-15:10
13 | - ``UIKit/UIAlertController/re(title:message:defaultActionButtonTitle:tintColor:)``
14 |
15 + - ``UIKit/UIAlertController/re(title:error:defaultActionButtonTitle:preferredStyle:tintColor:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UIApplicationExt_doc'
 --> Catalog/UIKit/UIApplicationExt_doc.md:5:5-5:10
3 | ## Topics
4 |
5 + - ``UIKit/UIApplication/Environment``
6 |
7 | - ``Reer/inferredEnvironment``
warning: 'inferredEnvironment' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIApplicationExt_doc.md:7:10-7:29
5 | - ``UIKit/UIApplication/Environment``
6 |
7 + - ``Reer/inferredEnvironment``
8 |
9 | - ``Reer/name``
warning: 'name' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIApplicationExt_doc.md:9:10-9:14
7  | - ``Reer/inferredEnvironment``
8  |
9  + - ``Reer/name``
10 |
11 | - ``Reer/bundleID``
warning: 'bundleID' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIApplicationExt_doc.md:11:10-11:18
9  | - ``Reer/name``
10 |
11 + - ``Reer/bundleID``
12 |
13 | - ``Reer/buildNumber``
warning: 'buildNumber' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIApplicationExt_doc.md:13:10-13:21
11 | - ``Reer/bundleID``
12 |
13 + - ``Reer/buildNumber``
14 |
15 | - ``Reer/version``
warning: 'version' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIApplicationExt_doc.md:15:10-15:17
13 | - ``Reer/buildNumber``
14 |
15 + - ``Reer/version``
16 |
17 | - ``Reer/schemes``
warning: 'schemes' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIApplicationExt_doc.md:17:10-17:17
15 | - ``Reer/version``
16 |
17 + - ``Reer/schemes``
18 |
19 | - ``Reer/keyWindow``
warning: 'keyWindow' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIApplicationExt_doc.md:19:10-19:19
17 | - ``Reer/schemes``
18 |
19 + - ``Reer/keyWindow``
20 |
21 | - ``Reer/windows``
warning: 'windows' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIApplicationExt_doc.md:21:10-21:17
19 | - ``Reer/keyWindow``
20 |
21 + - ``Reer/windows``
22 |
23 | - ``Reer/mainScreen``
warning: 'mainScreen' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIApplicationExt_doc.md:23:10-23:20
21 | - ``Reer/windows``
22 |
23 + - ``Reer/mainScreen``
24 |
25 | - ``Reer/topViewController``
warning: 'topViewController' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIApplicationExt_doc.md:25:10-25:27
23 | - ``Reer/mainScreen``
24 |
25 + - ``Reer/topViewController``
26 |
27 | - ``Reer/topNavigationController``
warning: 'topNavigationController' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIApplicationExt_doc.md:27:10-27:33
25 | - ``Reer/topViewController``
26 |
27 + - ``Reer/topNavigationController``
28 |
29 | - ``Reer/topViewController(of:)``
warning: 'topViewController(of:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIApplicationExt_doc.md:29:10-29:32
27 | - ``Reer/topNavigationController``
28 |
29 + - ``Reer/topViewController(of:)``
30 |
31 | - ``Reer/documentsURL``
warning: 'documentsURL' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIApplicationExt_doc.md:31:10-31:22
29 | - ``Reer/topViewController(of:)``
30 |
31 + - ``Reer/documentsURL``
32 |
33 | - ``Reer/documentsPath``
warning: 'documentsPath' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIApplicationExt_doc.md:33:10-33:23
31 | - ``Reer/documentsURL``
32 |
33 + - ``Reer/documentsPath``
34 |
35 | - ``Reer/cachesURL``
warning: 'cachesURL' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIApplicationExt_doc.md:35:10-35:19
33 | - ``Reer/documentsPath``
34 |
35 + - ``Reer/cachesURL``
36 |
37 | - ``Reer/cachesPath``
warning: 'cachesPath' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIApplicationExt_doc.md:37:10-37:20
35 | - ``Reer/cachesURL``
36 |
37 + - ``Reer/cachesPath``
38 |
39 | - ``Reer/libraryURL``
warning: 'libraryURL' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIApplicationExt_doc.md:39:10-39:20
37 | - ``Reer/cachesPath``
38 |
39 + - ``Reer/libraryURL``
40 |
41 | - ``Reer/libraryPath``
warning: 'libraryPath' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIApplicationExt_doc.md:41:10-41:21
39 | - ``Reer/libraryURL``
40 |
41 + - ``Reer/libraryPath``
warning: 'flexibleSpace' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIBarButtonItemExt_doc.md:5:10-5:23
3 | ## Topics
4 |
5 + - ``Reer/flexibleSpace``
6 |
7 | - ``Reer/addTargetForAction(_:action:)``
warning: 'addTargetForAction(_:action:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIBarButtonItemExt_doc.md:7:10-7:39
5 | - ``Reer/flexibleSpace``
6 |
7 + - ``Reer/addTargetForAction(_:action:)``
8 |
9 | - ``Reer/fixedSpace(width:)``
warning: 'fixedSpace(width:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIBarButtonItemExt_doc.md:9:10-9:28
7 | - ``Reer/addTargetForAction(_:action:)``
8 |
9 + - ``Reer/fixedSpace(width:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UIBezierPathExt_doc'
 --> Catalog/UIKit/UIBezierPathExt_doc.md:5:5-5:10
3 | ## Topics
4 |
5 + - ``UIKit/UIBezierPath/re(from:to:)``
6 |
7 | - ``UIKit/UIBezierPath/re(points:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UIBezierPathExt_doc'
 --> Catalog/UIKit/UIBezierPathExt_doc.md:7:5-7:10
5 | - ``UIKit/UIBezierPath/re(from:to:)``
6 |
7 + - ``UIKit/UIBezierPath/re(points:)``
8 |
9 | - ``UIKit/UIBezierPath/re(polygonWithPoints:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UIBezierPathExt_doc'
  --> Catalog/UIKit/UIBezierPathExt_doc.md:9:5-9:10
7  | - ``UIKit/UIBezierPath/re(points:)``
8  |
9  + - ``UIKit/UIBezierPath/re(polygonWithPoints:)``
10 |
11 | - ``UIKit/UIBezierPath/re(ovalOf:centered:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UIBezierPathExt_doc'
  --> Catalog/UIKit/UIBezierPathExt_doc.md:11:5-11:10
9  | - ``UIKit/UIBezierPath/re(polygonWithPoints:)``
10 |
11 + - ``UIKit/UIBezierPath/re(ovalOf:centered:)``
12 |
13 | - ``UIKit/UIBezierPath/re(rectOf:centered:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UIBezierPathExt_doc'
  --> Catalog/UIKit/UIBezierPathExt_doc.md:13:5-13:10
11 | - ``UIKit/UIBezierPath/re(ovalOf:centered:)``
12 |
13 + - ``UIKit/UIBezierPath/re(rectOf:centered:)``
warning: 'imageForDisabled' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIButtonExt_doc.md:5:10-5:26
3 | ## Topics
4 |
5 + - ``Reer/imageForDisabled``
6 |
7 | - ``Reer/imageForHighlighted``
warning: 'imageForHighlighted' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIButtonExt_doc.md:7:10-7:29
5 | - ``Reer/imageForDisabled``
6 |
7 + - ``Reer/imageForHighlighted``
8 |
9 | - ``Reer/imageForNormal``
warning: 'imageForNormal' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:9:10-9:24
7  | - ``Reer/imageForHighlighted``
8  |
9  + - ``Reer/imageForNormal``
10 |
11 | - ``Reer/imageForSelected``
warning: 'imageForSelected' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:11:10-11:26
9  | - ``Reer/imageForNormal``
10 |
11 + - ``Reer/imageForSelected``
12 |
13 | - ``Reer/imageForFocused``
warning: 'imageForFocused' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:13:10-13:25
11 | - ``Reer/imageForSelected``
12 |
13 + - ``Reer/imageForFocused``
14 |
15 | - ``Reer/titleColorForDisabled``
warning: 'titleColorForDisabled' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:15:10-15:31
13 | - ``Reer/imageForFocused``
14 |
15 + - ``Reer/titleColorForDisabled``
16 |
17 | - ``Reer/titleColorForHighlighted``
warning: 'titleColorForHighlighted' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:17:10-17:34
15 | - ``Reer/titleColorForDisabled``
16 |
17 + - ``Reer/titleColorForHighlighted``
18 |
19 | - ``Reer/titleColorForNormal``
warning: 'titleColorForNormal' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:19:10-19:29
17 | - ``Reer/titleColorForHighlighted``
18 |
19 + - ``Reer/titleColorForNormal``
20 |
21 | - ``Reer/titleColorForSelected``
warning: 'titleColorForSelected' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:21:10-21:31
19 | - ``Reer/titleColorForNormal``
20 |
21 + - ``Reer/titleColorForSelected``
22 |
23 | - ``Reer/titleColorForFocused``
warning: 'titleColorForFocused' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:23:10-23:30
21 | - ``Reer/titleColorForSelected``
22 |
23 + - ``Reer/titleColorForFocused``
24 |
25 | - ``Reer/titleForDisabled``
warning: 'titleForDisabled' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:25:10-25:26
23 | - ``Reer/titleColorForFocused``
24 |
25 + - ``Reer/titleForDisabled``
26 |
27 | - ``Reer/titleForHighlighted``
warning: 'titleForHighlighted' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:27:10-27:29
25 | - ``Reer/titleForDisabled``
26 |
27 + - ``Reer/titleForHighlighted``
28 |
29 | - ``Reer/titleForNormal``
warning: 'titleForNormal' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:29:10-29:24
27 | - ``Reer/titleForHighlighted``
28 |
29 + - ``Reer/titleForNormal``
30 |
31 | - ``Reer/titleForSelected``
warning: 'titleForSelected' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:31:10-31:26
29 | - ``Reer/titleForNormal``
30 |
31 + - ``Reer/titleForSelected``
32 |
33 | - ``Reer/titleForFocused``
warning: 'titleForFocused' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:33:10-33:25
31 | - ``Reer/titleForSelected``
32 |
33 + - ``Reer/titleForFocused``
34 |
35 | - ``Reer/attributedTitleForDisabled``
warning: 'attributedTitleForDisabled' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:35:10-35:36
33 | - ``Reer/titleForFocused``
34 |
35 + - ``Reer/attributedTitleForDisabled``
   |          ╰─suggestion: Replace 'attributedTitleForDisabled' with 'attributes'
36 |
37 | - ``Reer/attributedTitleForHighlighted``
warning: 'attributedTitleForHighlighted' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:37:10-37:39
35 | - ``Reer/attributedTitleForDisabled``
36 |
37 + - ``Reer/attributedTitleForHighlighted``
   |          ╰─suggestion: Replace 'attributedTitleForHighlighted' with 'attributes'
38 |
39 | - ``Reer/attributedTitleForNormal``
warning: 'attributedTitleForNormal' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:39:10-39:34
37 | - ``Reer/attributedTitleForHighlighted``
38 |
39 + - ``Reer/attributedTitleForNormal``
   |          ╰─suggestion: Replace 'attributedTitleForNormal' with 'attributes'
40 |
41 | - ``Reer/attributedTitleForSelected``
warning: 'attributedTitleForSelected' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:41:10-41:36
39 | - ``Reer/attributedTitleForNormal``
40 |
41 + - ``Reer/attributedTitleForSelected``
   |          ╰─suggestion: Replace 'attributedTitleForSelected' with 'attributes'
42 |
43 | - ``Reer/attributedTitleForFocused``
warning: 'attributedTitleForFocused' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:43:10-43:35
41 | - ``Reer/attributedTitleForSelected``
42 |
43 + - ``Reer/attributedTitleForFocused``
   |          ╰─suggestion: Replace 'attributedTitleForFocused' with 'attributes'
44 |
45 | - ``Reer/setImageForAllStates(_:)``
warning: 'setImageForAllStates(_:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:45:10-45:34
43 | - ``Reer/attributedTitleForFocused``
44 |
45 + - ``Reer/setImageForAllStates(_:)``
46 |
47 | - ``Reer/setTitleColorForAllStates(_:)``
warning: 'setTitleColorForAllStates(_:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:47:10-47:39
45 | - ``Reer/setImageForAllStates(_:)``
46 |
47 + - ``Reer/setTitleColorForAllStates(_:)``
48 |
49 | - ``Reer/setTitleForAllStates(_:)``
warning: 'setTitleForAllStates(_:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:49:10-49:34
47 | - ``Reer/setTitleColorForAllStates(_:)``
48 |
49 + - ``Reer/setTitleForAllStates(_:)``
50 |
51 | - ``Reer/ContentLayoutType``
warning: 'ContentLayoutType' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:51:10-51:27
49 | - ``Reer/setTitleForAllStates(_:)``
50 |
51 + - ``Reer/ContentLayoutType``
52 |
53 | - ``Reer/layoutContent(with:spacing:offsetFromCenter:)``
warning: 'layoutContent(with:spacing:offsetFromCenter:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:53:10-53:55
51 | - ``Reer/ContentLayoutType``
52 |
53 + - ``Reer/layoutContent(with:spacing:offsetFromCenter:)``
54 |
55 | - ``Reer/setBackgroundColor(color:forState:)``
warning: 'setBackgroundColor(color:forState:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:55:10-55:45
53 | - ``Reer/layoutContent(with:spacing:offsetFromCenter:)``
54 |
55 + - ``Reer/setBackgroundColor(color:forState:)``
56 |
57 | - ``Reer/setAttributedTitleForAllStates(_:)``
warning: 'setAttributedTitleForAllStates(_:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIButtonExt_doc.md:57:10-57:44
55 | - ``Reer/setBackgroundColor(color:forState:)``
56 |
57 + - ``Reer/setAttributedTitleForAllStates(_:)``
warning: 'indexPathOfLastItem' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UICollectionViewExt_doc.md:5:10-5:29
3 | ## Topics
4 |
5 + - ``Reer/indexPathOfLastItem``
6 |
7 | - ``Reer/lastSection-3t20r``
warning: 'lastSection-3t20r' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UICollectionViewExt_doc.md:7:10-7:27
5 | - ``Reer/indexPathOfLastItem``
6 |
7 + - ``Reer/lastSection-3t20r``
8 |
9 | - ``Reer/numberOfItems()``
warning: 'numberOfItems()' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UICollectionViewExt_doc.md:9:10-9:25
7  | - ``Reer/lastSection-3t20r``
8  |
9  + - ``Reer/numberOfItems()``
   |          ├─suggestion: Replace 'numberOfItems()' with 'numberOfDaysInMonth(for:)'
   |          ├─suggestion: Replace 'numberOfItems()' with 'numberOfMatches(in:options:range:)'
   |          ╰─suggestion: Replace 'numberOfItems()' with 'numberOfLines(forWidth:ignoreBlankLines:)'
10 |
11 | - ``Reer/indexPathOfLastItem(inSection:)``
warning: 'indexPathOfLastItem(inSection:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UICollectionViewExt_doc.md:11:10-11:41
9  | - ``Reer/numberOfItems()``
10 |
11 + - ``Reer/indexPathOfLastItem(inSection:)``
12 |
13 | - ``Reer/reloadData(_:)-86woi``
warning: 'reloadData(_:)-86woi' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UICollectionViewExt_doc.md:13:10-13:30
11 | - ``Reer/indexPathOfLastItem(inSection:)``
12 |
13 + - ``Reer/reloadData(_:)-86woi``
14 |
15 | - ``Reer/dequeueReusableCell(_:for:)-3l6zi``
warning: 'dequeueReusableCell(_:for:)-3l6zi' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UICollectionViewExt_doc.md:15:10-15:43
13 | - ``Reer/reloadData(_:)-86woi``
14 |
15 + - ``Reer/dequeueReusableCell(_:for:)-3l6zi``
16 |
17 | - ``Reer/dequeueReusableSupplementaryView(ofKind:withClass:for:)``
warning: 'dequeueReusableSupplementaryView(ofKind:withClass:for:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UICollectionViewExt_doc.md:17:10-17:65
15 | - ``Reer/dequeueReusableCell(_:for:)-3l6zi``
16 |
17 + - ``Reer/dequeueReusableSupplementaryView(ofKind:withClass:for:)``
18 |
19 | - ``Reer/register(supplementaryViewOfKind:withClass:)``
warning: 'register(supplementaryViewOfKind:withClass:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UICollectionViewExt_doc.md:19:10-19:54
17 | - ``Reer/dequeueReusableSupplementaryView(ofKind:withClass:for:)``
18 |
19 + - ``Reer/register(supplementaryViewOfKind:withClass:)``
20 |
21 | - ``Reer/register(nib:forCellWithClass:)``
warning: 'register(nib:forCellWithClass:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UICollectionViewExt_doc.md:21:10-21:41
19 | - ``Reer/register(supplementaryViewOfKind:withClass:)``
20 |
21 + - ``Reer/register(nib:forCellWithClass:)``
22 |
23 | - ``Reer/register(nib:forSupplementaryViewOfKind:withClass:)``
warning: 'register(nib:forSupplementaryViewOfKind:withClass:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UICollectionViewExt_doc.md:23:10-23:61
21 | - ``Reer/register(nib:forCellWithClass:)``
22 |
23 + - ``Reer/register(nib:forSupplementaryViewOfKind:withClass:)``
24 |
25 | - ``Reer/register(nibWithCellClass:at:)-89pi1``
warning: 'register(nibWithCellClass:at:)-89pi1' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UICollectionViewExt_doc.md:25:10-25:46
23 | - ``Reer/register(nib:forSupplementaryViewOfKind:withClass:)``
24 |
25 + - ``Reer/register(nibWithCellClass:at:)-89pi1``
26 |
27 | - ``Reer/register(cell:)-1wl7w``
warning: 'register(cell:)-1wl7w' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UICollectionViewExt_doc.md:27:10-27:31
25 | - ``Reer/register(nibWithCellClass:at:)-89pi1``
26 |
27 + - ``Reer/register(cell:)-1wl7w``
28 |
29 | - ``Reer/scrollToItem(at:at:animated:)``
warning: 'scrollToItem(at:at:animated:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UICollectionViewExt_doc.md:29:10-29:39
27 | - ``Reer/register(cell:)-1wl7w``
28 |
29 + - ``Reer/scrollToItem(at:at:animated:)``
30 |
31 | - ``Reer/isValidIndexPath(_:)-95uiu``
warning: 'isValidIndexPath(_:)-95uiu' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UICollectionViewExt_doc.md:31:10-31:36
29 | - ``Reer/scrollToItem(at:at:animated:)``
30 |
31 + - ``Reer/isValidIndexPath(_:)-95uiu``
   |          ├─suggestion: Replace 'isValidIndexPath(_:)-95uiu' with 'isValidEmail'
   |          ├─suggestion: Replace 'isValidIndexPath(_:)-95uiu' with 'isValidUrl'
   |          ├─suggestion: Replace 'isValidIndexPath(_:)-95uiu' with 'isValidFileUrl'
   |          ├─suggestion: Replace 'isValidIndexPath(_:)-95uiu' with 'isValidHttpUrl'
   |          ├─suggestion: Replace 'isValidIndexPath(_:)-95uiu' with 'isValidHttpsUrl'
   |          ╰─suggestion: Replace 'isValidIndexPath(_:)-95uiu' with 'isValidSchemedUrl'
32 |
33 |
warning: 'removeAllTargets()' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIControlExt_doc.md:5:10-5:28
3 | ## Topics
4 |
5 + - ``Reer/removeAllTargets()``
6 |
7 | - ``Reer/addAction(forControlEvents:action:)``
warning: 'addAction(forControlEvents:action:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIControlExt_doc.md:7:10-7:45
5 | - ``Reer/removeAllTargets()``
6 |
7 + - ``Reer/addAction(forControlEvents:action:)``
8 |
9 | - ``Reer/setAction(forControlEvents:action:)``
warning: 'setAction(forControlEvents:action:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIControlExt_doc.md:9:10-9:45
7  | - ``Reer/addAction(forControlEvents:action:)``
8  |
9  + - ``Reer/setAction(forControlEvents:action:)``
10 |
11 | - ``Reer/removeAllActions(forControlEvents:)``
warning: 'removeAllActions(forControlEvents:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIControlExt_doc.md:11:10-11:45
9  | - ``Reer/setAction(forControlEvents:action:)``
10 |
11 + - ``Reer/removeAllActions(forControlEvents:)``
12 |
13 | - ``Reer/setTarget(_:action:forControlEvents:)``
warning: 'setTarget(_:action:forControlEvents:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIControlExt_doc.md:13:10-13:47
11 | - ``Reer/removeAllActions(forControlEvents:)``
12 |
13 + - ``Reer/setTarget(_:action:forControlEvents:)``
14 |
warning: 'UIKit' doesn't exist at '/ReerKit/UIDeviceExt_doc'
 --> Catalog/UIKit/UIDeviceExt_doc.md:5:5-5:10
3 | ## Topics
4 |
5 + - ``UIKit/UIDevice/Name``
6 |
7 | - ``Reer/osVersion``
warning: 'osVersion' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIDeviceExt_doc.md:7:10-7:19
5 | - ``UIKit/UIDevice/Name``
6 |
7 + - ``Reer/osVersion``
8 |
9 | - ``Reer/osVersionNumber``
warning: 'osVersionNumber' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:9:10-9:25
7  | - ``Reer/osVersion``
8  |
9  + - ``Reer/osVersionNumber``
10 |
11 | - ``Reer/currentLanguage``
warning: 'currentLanguage' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:11:10-11:25
9  | - ``Reer/osVersionNumber``
10 |
11 + - ``Reer/currentLanguage``
12 |
13 | - ``Reer/isPhone``
warning: 'isPhone' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:13:10-13:17
11 | - ``Reer/currentLanguage``
12 |
13 + - ``Reer/isPhone``
   |          ╰─suggestion: Replace 'isPhone' with 'isPositive'
14 |
15 | - ``Reer/isPad``
warning: 'isPad' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:15:10-15:15
13 | - ``Reer/isPhone``
14 |
15 + - ``Reer/isPad``
   |          ╰─suggestion: Replace 'isPad' with 'isPalindrome'
16 |
17 | - ``Reer/isMac``
warning: 'isMac' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:17:10-17:15
15 | - ``Reer/isPad``
16 |
17 + - ``Reer/isMac``
18 |
19 | - ``Reer/isTV``
warning: 'isTV' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:19:10-19:14
17 | - ``Reer/isMac``
18 |
19 + - ``Reer/isTV``
20 |
21 | - ``Reer/isVision``
warning: 'isVision' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:21:10-21:18
19 | - ``Reer/isTV``
20 |
21 + - ``Reer/isVision``
22 |
23 | - ``Reer/isSimulator``
warning: 'isSimulator' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:23:10-23:21
21 | - ``Reer/isVision``
22 |
23 + - ``Reer/isSimulator``
24 |
25 | - ``Reer/isJailbroken``
warning: 'isJailbroken' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:25:10-25:22
23 | - ``Reer/isSimulator``
24 |
25 + - ``Reer/isJailbroken``
26 |
27 | - ``Reer/canMakePhoneCalls``
warning: 'canMakePhoneCalls' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:27:10-27:27
25 | - ``Reer/isJailbroken``
26 |
27 + - ``Reer/canMakePhoneCalls``
28 |
29 | - ``Reer/ipAddressWIFI``
warning: 'ipAddressWIFI' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:29:10-29:23
27 | - ``Reer/canMakePhoneCalls``
28 |
29 + - ``Reer/ipAddressWIFI``
30 |
31 | - ``Reer/ipAddressCell``
warning: 'ipAddressCell' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:31:10-31:23
29 | - ``Reer/ipAddressWIFI``
30 |
31 + - ``Reer/ipAddressCell``
32 |
33 | - ``Reer/isRectangularScreen``
warning: 'isRectangularScreen' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:33:10-33:29
31 | - ``Reer/ipAddressCell``
32 |
33 + - ``Reer/isRectangularScreen``
34 |
35 | - ``Reer/isNotchScreen``
warning: 'isNotchScreen' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:35:10-35:23
33 | - ``Reer/isRectangularScreen``
34 |
35 + - ``Reer/isNotchScreen``
36 |
37 | - ``Reer/isDynamicIslandScreen``
warning: 'isDynamicIslandScreen' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:37:10-37:31
35 | - ``Reer/isNotchScreen``
36 |
37 + - ``Reer/isDynamicIslandScreen``
38 |
39 | - ``Reer/machineModelIdentifier``
warning: 'machineModelIdentifier' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:39:10-39:32
37 | - ``Reer/isDynamicIslandScreen``
38 |
39 + - ``Reer/machineModelIdentifier``
40 |
41 | - ``Reer/machineModelName``
warning: 'machineModelName' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:41:10-41:26
39 | - ``Reer/machineModelIdentifier``
40 |
41 + - ``Reer/machineModelName``
42 |
43 | - ``Reer/modelName``
warning: 'modelName' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:43:10-43:19
41 | - ``Reer/machineModelName``
42 |
43 + - ``Reer/modelName``
44 |
45 | - ``Reer/mntID``
warning: 'mntID' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:45:10-45:15
43 | - ``Reer/modelName``
44 |
45 + - ``Reer/mntID``
46 |
47 | - ``Reer/diskSpace``
warning: 'diskSpace' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:47:10-47:19
45 | - ``Reer/mntID``
46 |
47 + - ``Reer/diskSpace``
48 |
49 | - ``Reer/diskSpaceFree``
warning: 'diskSpaceFree' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:49:10-49:23
47 | - ``Reer/diskSpace``
48 |
49 + - ``Reer/diskSpaceFree``
50 |
51 | - ``Reer/diskSpaceUsed``
warning: 'diskSpaceUsed' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:51:10-51:23
49 | - ``Reer/diskSpaceFree``
50 |
51 + - ``Reer/diskSpaceUsed``
52 |
53 | - ``Reer/memoryTotal``
warning: 'memoryTotal' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:53:10-53:21
51 | - ``Reer/diskSpaceUsed``
52 |
53 + - ``Reer/memoryTotal``
54 |
55 | - ``Reer/appMemoryUsage``
warning: 'appMemoryUsage' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:55:10-55:24
53 | - ``Reer/memoryTotal``
54 |
55 + - ``Reer/appMemoryUsage``
56 |
57 | - ``Reer/systemMemoryUsage``
warning: 'systemMemoryUsage' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:57:10-57:27
55 | - ``Reer/appMemoryUsage``
56 |
57 + - ``Reer/systemMemoryUsage``
58 |
59 | - ``Reer/appCPUUsage``
warning: 'appCPUUsage' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:59:10-59:21
57 | - ``Reer/systemMemoryUsage``
58 |
59 + - ``Reer/appCPUUsage``
60 |
61 | - ``Reer/systemCPUUsage``
warning: 'systemCPUUsage' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIDeviceExt_doc.md:61:10-61:24
59 | - ``Reer/appCPUUsage``
60 |
61 + - ``Reer/systemCPUUsage``
62 |
63 | - ``UIKit/UIDevice/Name/description``
warning: 'UIKit' doesn't exist at '/ReerKit/UIDeviceExt_doc'
  --> Catalog/UIKit/UIDeviceExt_doc.md:63:5-63:10
61 | - ``Reer/systemCPUUsage``
62 |
63 + - ``UIKit/UIDevice/Name/description``
warning: 'bold' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIFontExt_doc.md:5:10-5:14
3 | ## Topics
4 |
5 + - ``Reer/bold``
6 |
7 | - ``Reer/italic``
warning: 'italic' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIFontExt_doc.md:7:10-7:16
5 | - ``Reer/bold``
6 |
7 + - ``Reer/italic``
8 |
9 | - ``Reer/monospaced``
warning: 'monospaced' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIFontExt_doc.md:9:10-9:20
7 | - ``Reer/italic``
8 |
9 + - ``Reer/monospaced``
warning: 'removeFromView()' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIGestureRecognizerExt_doc.md:5:10-5:26
3 | ## Topics
4 |
5 + - ``Reer/removeFromView()``
warning: 'bytesSize' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIImageExt_doc.md:5:10-5:19
3 | ## Topics
4 |
5 + - ``Reer/bytesSize``
  |          ╰─suggestion: Replace 'bytesSize' with 'bytes'
6 |
7 | - ``Reer/kilobytesSize``
warning: 'kilobytesSize' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIImageExt_doc.md:7:10-7:23
5 | - ``Reer/bytesSize``
6 |
7 + - ``Reer/kilobytesSize``
8 |
9 | - ``Reer/original``
warning: 'original' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:9:10-9:18
7  | - ``Reer/kilobytesSize``
8  |
9  + - ``Reer/original``
10 |
11 | - ``Reer/template``
warning: 'template' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:11:10-11:18
9  | - ``Reer/original``
10 |
11 + - ``Reer/template``
12 |
13 | - ``Reer/hasAlphaChannel``
warning: 'hasAlphaChannel' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:13:10-13:25
11 | - ``Reer/template``
12 |
13 + - ``Reer/hasAlphaChannel``
14 |
15 | - ``Reer/averageColor()``
warning: 'averageColor()' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:15:10-15:24
13 | - ``Reer/hasAlphaChannel``
14 |
15 + - ``Reer/averageColor()``
   |          ╰─suggestion: Replace 'averageColor()' with 'average()'
16 |
17 | - ``Reer/color(at:)-2pa1y``
warning: 'color(at:)-2pa1y' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:17:10-17:26
15 | - ``Reer/averageColor()``
16 |
17 + - ``Reer/color(at:)-2pa1y``
18 |
19 | - ``Reer/compressed(quality:)``
warning: 'compressed(quality:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:19:10-19:30
17 | - ``Reer/color(at:)-2pa1y``
18 |
19 + - ``Reer/compressed(quality:)``
20 |
21 | - ``Reer/compressedData(quality:)``
warning: 'compressedData(quality:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:21:10-21:34
19 | - ``Reer/compressed(quality:)``
20 |
21 + - ``Reer/compressedData(quality:)``
22 |
23 | - ``Reer/filled(withColor:)``
warning: 'filled(withColor:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:23:10-23:28
21 | - ``Reer/compressedData(quality:)``
22 |
23 + - ``Reer/filled(withColor:)``
24 |
25 | - ``Reer/blend(_:mode:alpha:)``
warning: 'blend(_:mode:alpha:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:25:10-25:30
23 | - ``Reer/filled(withColor:)``
24 |
25 + - ``Reer/blend(_:mode:alpha:)``
   |          ├─suggestion: Replace 'blend(_:mode:alpha:)' with 'blend(_:intensity1:with:intensity2:)'
   |          ╰─suggestion: Replace 'blend(_:mode:alpha:)' with 'blend(with:)'
26 |
27 | - ``Reer/withBackgroundColor(_:)``
warning: 'withBackgroundColor(_:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:27:10-27:33
25 | - ``Reer/blend(_:mode:alpha:)``
26 |
27 + - ``Reer/withBackgroundColor(_:)``
28 |
29 | - ``Reer/withRoundedCorners(radius:corners:borderWidth:borderColor:borderLineJoin:)``
warning: 'withRoundedCorners(radius:corners:borderWidth:borderColor:borderLineJoin:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:29:10-29:84
27 | - ``Reer/withBackgroundColor(_:)``
28 |
29 + - ``Reer/withRoundedCorners(radius:corners:borderWidth:borderColor:borderLineJoin:)``
30 |
31 | - ``Reer/withEdge(byInsets:color:)``
warning: 'withEdge(byInsets:color:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:31:10-31:35
29 | - ``Reer/withRoundedCorners(radius:corners:borderWidth:borderColor:borderLineJoin:)``
30 |
31 + - ``Reer/withEdge(byInsets:color:)``
32 |
33 | - ``Reer/pngBase64String()``
warning: 'pngBase64String()' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:33:10-33:27
31 | - ``Reer/withEdge(byInsets:color:)``
32 |
33 + - ``Reer/pngBase64String()``
34 |
35 | - ``Reer/jpegBase64String(compressionQuality:)``
warning: 'jpegBase64String(compressionQuality:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:35:10-35:47
33 | - ``Reer/pngBase64String()``
34 |
35 + - ``Reer/jpegBase64String(compressionQuality:)``
36 |
37 | - ``Reer/withAlwaysOriginalTintColor(_:)``
warning: 'withAlwaysOriginalTintColor(_:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:37:10-37:41
35 | - ``Reer/jpegBase64String(compressionQuality:)``
36 |
37 + - ``Reer/withAlwaysOriginalTintColor(_:)``
38 |
39 | - ``Reer/rotateLeft90``
warning: 'rotateLeft90' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:39:10-39:22
37 | - ``Reer/withAlwaysOriginalTintColor(_:)``
38 |
39 + - ``Reer/rotateLeft90``
   |          ╰─suggestion: Replace 'rotateLeft90' with 'rotated(by:x:y:z:)'
40 |
41 | - ``Reer/rotateRight90``
warning: 'rotateRight90' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:41:10-41:23
39 | - ``Reer/rotateLeft90``
40 |
41 + - ``Reer/rotateRight90``
   |          ╰─suggestion: Replace 'rotateRight90' with 'rotated(by:x:y:z:)'
42 |
43 | - ``Reer/rotate180``
warning: 'rotate180' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:43:10-43:19
41 | - ``Reer/rotateRight90``
42 |
43 + - ``Reer/rotate180``
   |          ╰─suggestion: Replace 'rotate180' with 'rotated(by:x:y:z:)'
44 |
45 | - ``Reer/rotated(by:fitSize:)``
warning: 'rotated(by:fitSize:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:45:10-45:30
43 | - ``Reer/rotate180``
44 |
45 + - ``Reer/rotated(by:fitSize:)``
   |          ╰─suggestion: Replace 'rotated(by:fitSize:)' with 'rotated(by:x:y:z:)'
46 |
47 | - ``Reer/rotated(by:)``
warning: 'rotated(by:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:47:10-47:22
45 | - ``Reer/rotated(by:fitSize:)``
46 |
47 + - ``Reer/rotated(by:)``
   |          ╰─suggestion: Replace 'rotated(by:)' with 'rotated(by:x:y:z:)'
48 |
49 | - ``Reer/cropped(to:)``
warning: 'cropped(to:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:49:10-49:22
47 | - ``Reer/rotated(by:)``
48 |
49 + - ``Reer/cropped(to:)``
50 |
51 | - ``Reer/resize(toHeight:opaque:)``
warning: 'resize(toHeight:opaque:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:51:10-51:34
49 | - ``Reer/cropped(to:)``
50 |
51 + - ``Reer/resize(toHeight:opaque:)``
52 |
53 | - ``Reer/resize(toWidth:opaque:)``
warning: 'resize(toWidth:opaque:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:53:10-53:33
51 | - ``Reer/resize(toHeight:opaque:)``
52 |
53 + - ``Reer/resize(toWidth:opaque:)``
54 |
55 | - ``Reer/resize(to:contentMode:opaque:)``
warning: 'resize(to:contentMode:opaque:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:55:10-55:40
53 | - ``Reer/resize(toWidth:opaque:)``
54 |
55 + - ``Reer/resize(to:contentMode:opaque:)``
56 |
57 | - ``Reer/draw(inRect:contentMode:clipsToBounds:)``
warning: 'draw(inRect:contentMode:clipsToBounds:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:57:10-57:49
55 | - ``Reer/resize(to:contentMode:opaque:)``
56 |
57 + - ``Reer/draw(inRect:contentMode:clipsToBounds:)``
58 |
59 | - ``Reer/flipVertical``
warning: 'flipVertical' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:59:10-59:22
57 | - ``Reer/draw(inRect:contentMode:clipsToBounds:)``
58 |
59 + - ``Reer/flipVertical``
60 |
61 | - ``Reer/flipHorizontal``
warning: 'flipHorizontal' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:61:10-61:24
59 | - ``Reer/flipVertical``
60 |
61 + - ``Reer/flipHorizontal``
62 |
63 | - ``Reer/blurSoft``
warning: 'blurSoft' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:63:10-63:18
61 | - ``Reer/flipHorizontal``
62 |
63 + - ``Reer/blurSoft``
64 |
65 | - ``Reer/blurLight``
warning: 'blurLight' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:65:10-65:19
63 | - ``Reer/blurSoft``
64 |
65 + - ``Reer/blurLight``
66 |
67 | - ``Reer/blurExtraLight``
warning: 'blurExtraLight' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:67:10-67:24
65 | - ``Reer/blurLight``
66 |
67 + - ``Reer/blurExtraLight``
68 |
69 | - ``Reer/blurDark``
warning: 'blurDark' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:69:10-69:18
67 | - ``Reer/blurExtraLight``
68 |
69 + - ``Reer/blurDark``
70 |
71 | - ``Reer/blurWithTintColor(_:)``
warning: 'blurWithTintColor(_:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:71:10-71:31
69 | - ``Reer/blurDark``
70 |
71 + - ``Reer/blurWithTintColor(_:)``
72 |
73 | - ``Reer/blur(radius:tintColor:tintBlendMode:saturation:maskImage:)``
warning: 'blur(radius:tintColor:tintBlendMode:saturation:maskImage:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:73:10-73:68
71 | - ``Reer/blurWithTintColor(_:)``
72 |
73 + - ``Reer/blur(radius:tintColor:tintBlendMode:saturation:maskImage:)``
74 |
75 | - ``ImageFilterName``
warning: 'ImageFilterName' doesn't exist at '/ReerKit/UIImageExt_doc'
  --> Catalog/UIKit/UIImageExt_doc.md:75:5-75:20
73 | - ``Reer/blur(radius:tintColor:tintBlendMode:saturation:maskImage:)``
74 |
75 + - ``ImageFilterName``
76 |
77 | - ``Reer/grayscale``
warning: 'grayscale' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:77:10-77:19
75 | - ``ImageFilterName``
76 |
77 + - ``Reer/grayscale``
78 |
79 | - ``Reer/with(filter:)``
warning: 'with(filter:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIImageExt_doc.md:79:10-79:23
77 | - ``Reer/grayscale``
78 |
79 + - ``Reer/with(filter:)``
   |          ╰─suggestion: Replace 'with(filter:)' with 'with(attributes:)'
80 |
81 | - ``UIKit/UIImage/re(color:size:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UIImageExt_doc'
  --> Catalog/UIKit/UIImageExt_doc.md:81:5-81:10
79 | - ``Reer/with(filter:)``
80 |
81 + - ``UIKit/UIImage/re(color:size:)``
82 |
83 | - ``UIKit/UIImage/re(base64String:scale:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UIImageExt_doc'
  --> Catalog/UIKit/UIImageExt_doc.md:83:5-83:10
81 | - ``UIKit/UIImage/re(color:size:)``
82 |
83 + - ``UIKit/UIImage/re(base64String:scale:)``
84 |
85 | - ``UIKit/UIImage/re(url:scale:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UIImageExt_doc'
  --> Catalog/UIKit/UIImageExt_doc.md:85:5-85:10
83 | - ``UIKit/UIImage/re(base64String:scale:)``
84 |
85 + - ``UIKit/UIImage/re(url:scale:)``
86 |
87 | - ``UIKit/UIImage/re(pdf:size:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UIImageExt_doc'
  --> Catalog/UIKit/UIImageExt_doc.md:87:5-87:10
85 | - ``UIKit/UIImage/re(url:scale:)``
86 |
87 + - ``UIKit/UIImage/re(pdf:size:)``
88 |
89 | - ``UIKit/UIImage/re(color:size:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UIImageExt_doc'
  --> Catalog/UIKit/UIImageExt_doc.md:89:5-89:10
87 | - ``UIKit/UIImage/re(pdf:size:)``
88 |
89 + - ``UIKit/UIImage/re(color:size:)``
90 |
91 | - ``UIKit/UIImage/re(pdf:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UIImageExt_doc'
  --> Catalog/UIKit/UIImageExt_doc.md:91:5-91:10
89 | - ``UIKit/UIImage/re(color:size:)``
90 |
91 + - ``UIKit/UIImage/re(pdf:)``
92 |
93 | - ``UIKit/UIImage/re(emoji:size:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UIImageExt_doc'
  --> Catalog/UIKit/UIImageExt_doc.md:93:5-93:10
91 | - ``UIKit/UIImage/re(pdf:)``
92 |
93 + - ``UIKit/UIImage/re(emoji:size:)``
94 |
95 |
warning: 'download(from:contentMode:placeholder:completionHandler:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIImageViewExt_doc.md:5:10-5:67
3 | ## Topics
4 |
5 + - ``Reer/download(from:contentMode:placeholder:completionHandler:)``
6 |
7 | - ``Reer/blur(withStyle:)``
warning: 'blur(withStyle:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIImageViewExt_doc.md:7:10-7:26
5 | - ``Reer/download(from:contentMode:placeholder:completionHandler:)``
6 |
7 + - ``Reer/blur(withStyle:)``
8 |
9 | - ``Reer/blurred(withStyle:)``
warning: 'blurred(withStyle:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIImageViewExt_doc.md:9:10-9:29
7 | - ``Reer/blur(withStyle:)``
8 |
9 + - ``Reer/blurred(withStyle:)``
warning: 'requiredHeight' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UILabelExt_doc.md:5:10-5:24
3 | ## Topics
4 |
5 + - ``Reer/requiredHeight``
6 |
7 |
warning: 'setTitleFont(_:color:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UINavigationBarExt_doc.md:5:10-5:32
3 | ## Topics
4 |
5 + - ``Reer/setTitleFont(_:color:)``
6 |
7 | - ``Reer/makeTransparent(withTint:)-330sc``
warning: 'makeTransparent(withTint:)-330sc' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UINavigationBarExt_doc.md:7:10-7:42
5 | - ``Reer/setTitleFont(_:color:)``
6 |
7 + - ``Reer/makeTransparent(withTint:)-330sc``
8 |
9 | - ``Reer/setColors(background:text:)``
warning: 'setColors(background:text:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UINavigationBarExt_doc.md:9:10-9:37
7 | - ``Reer/makeTransparent(withTint:)-330sc``
8 |
9 + - ``Reer/setColors(background:text:)``
warning: 'popViewController(animated:_:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UINavigationControllerExt_doc.md:5:10-5:40
3 | ## Topics
4 |
5 + - ``Reer/popViewController(animated:_:)``
6 |
7 | - ``Reer/pushViewController(_:animated:completion:)``
warning: 'pushViewController(_:animated:completion:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UINavigationControllerExt_doc.md:7:10-7:52
5 | - ``Reer/popViewController(animated:_:)``
6 |
7 + - ``Reer/pushViewController(_:animated:completion:)``
8 |
9 | - ``Reer/makeTransparent(withTint:)-4e90h``
warning: 'makeTransparent(withTint:)-4e90h' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UINavigationControllerExt_doc.md:9:10-9:42
7 | - ``Reer/pushViewController(_:animated:completion:)``
8 |
9 + - ``Reer/makeTransparent(withTint:)-4e90h``
warning: 'replaceTitle(with:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UINavigationItemExt_doc.md:5:10-5:29
3 | ## Topics
4 |
5 + - ``Reer/replaceTitle(with:)``
  |          ├─suggestion: Replace 'replaceTitle(with:)' with 'replaceMatches(in:options:range:withTemplate:)'
  |          ╰─suggestion: Replace 'replaceTitle(with:)' with 'replacingOccurrences(of:with:options:range:)'
warning: 'beginRefreshing(in:animated:sendAction:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIRefreshControlExt_doc.md:5:10-5:50
3 | ## Topics
4 |
5 + - ``Reer/beginRefreshing(in:animated:sendAction:)``
6 |
7 | - ``Reer/beginRefreshing(animated:sendAction:)``
warning: 'beginRefreshing(animated:sendAction:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIRefreshControlExt_doc.md:7:10-7:47
5 | - ``Reer/beginRefreshing(in:animated:sendAction:)``
6 |
7 + - ``Reer/beginRefreshing(animated:sendAction:)``
warning: 'ResponderEventAction' doesn't exist at '/ReerKit/UIResponderExt_doc'
 --> Catalog/UIKit/UIResponderExt_doc.md:5:5-5:25
3 | ## Topics
4 |
5 + - ``ResponderEventAction``
6 |
7 | - ``ResponderEventName``
warning: 'ResponderEventName' doesn't exist at '/ReerKit/UIResponderExt_doc'
 --> Catalog/UIKit/UIResponderExt_doc.md:7:5-7:23
5 | - ``ResponderEventAction``
6 |
7 + - ``ResponderEventName``
8 |
9 | - ``Reer/post(_:userInfo:)``
warning: 'post(_:userInfo:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIResponderExt_doc.md:9:10-9:27
7  | - ``ResponderEventName``
8  |
9  + - ``Reer/post(_:userInfo:)``
10 |
11 | - ``Reer/observeResponderEvent(_:action:)``
warning: 'observeResponderEvent(_:action:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIResponderExt_doc.md:11:10-11:42
9  | - ``Reer/post(_:userInfo:)``
10 |
11 + - ``Reer/observeResponderEvent(_:action:)``
12 |
13 | - ``Reer/unobserveResponderEvent(_:)``
warning: 'unobserveResponderEvent(_:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIResponderExt_doc.md:13:10-13:37
11 | - ``Reer/observeResponderEvent(_:action:)``
12 |
13 + - ``Reer/unobserveResponderEvent(_:)``
warning: 'size-swift.type.property' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIScreenExt_doc.md:5:10-5:34
3 | ## Topics
4 |
5 + - ``Reer/size-swift.type.property``
6 |
7 | - ``Reer/width-swift.type.property``
warning: 'width-swift.type.property' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIScreenExt_doc.md:7:10-7:35
5 | - ``Reer/size-swift.type.property``
6 |
7 + - ``Reer/width-swift.type.property``
8 |
9 | - ``Reer/height-swift.type.property``
warning: 'height-swift.type.property' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIScreenExt_doc.md:9:10-9:36
7  | - ``Reer/width-swift.type.property``
8  |
9  + - ``Reer/height-swift.type.property``
   |          ╰─suggestion: Replace 'height-swift.type.property' with 'height(forWidth:)'
10 |
11 | - ``Reer/onePixel``
warning: 'onePixel' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIScreenExt_doc.md:11:10-11:18
9  | - ``Reer/height-swift.type.property``
10 |
11 + - ``Reer/onePixel``
12 |
13 | - ``Reer/halfPoint``
warning: 'halfPoint' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIScreenExt_doc.md:13:10-13:19
11 | - ``Reer/onePixel``
12 |
13 + - ``Reer/halfPoint``
warning: 'snapshot' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIScrollViewExt_doc.md:5:10-5:18
3 | ## Topics
4 |
5 + - ``Reer/snapshot``
6 |
7 | - ``Reer/visibleRect``
warning: 'visibleRect' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIScrollViewExt_doc.md:7:10-7:21
5 | - ``Reer/snapshot``
6 |
7 + - ``Reer/visibleRect``
8 |
9 | - ``Reer/scrollToTop(animated:)``
warning: 'scrollToTop(animated:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIScrollViewExt_doc.md:9:10-9:32
7  | - ``Reer/visibleRect``
8  |
9  + - ``Reer/scrollToTop(animated:)``
10 |
11 | - ``Reer/scrollToLeft(animated:)``
warning: 'scrollToLeft(animated:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIScrollViewExt_doc.md:11:10-11:33
9  | - ``Reer/scrollToTop(animated:)``
10 |
11 + - ``Reer/scrollToLeft(animated:)``
12 |
13 | - ``Reer/scrollToRight(animated:)``
warning: 'scrollToRight(animated:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIScrollViewExt_doc.md:13:10-13:34
11 | - ``Reer/scrollToLeft(animated:)``
12 |
13 + - ``Reer/scrollToRight(animated:)``
14 |
15 | - ``Reer/scrollToBottom(animated:)``
warning: 'scrollToBottom(animated:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIScrollViewExt_doc.md:15:10-15:35
13 | - ``Reer/scrollToRight(animated:)``
14 |
15 + - ``Reer/scrollToBottom(animated:)``
16 |
17 | - ``Reer/scrollUp(animated:)``
warning: 'scrollUp(animated:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIScrollViewExt_doc.md:17:10-17:29
15 | - ``Reer/scrollToBottom(animated:)``
16 |
17 + - ``Reer/scrollUp(animated:)``
18 |
19 | - ``Reer/scrollLeft(animated:)``
warning: 'scrollLeft(animated:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIScrollViewExt_doc.md:19:10-19:31
17 | - ``Reer/scrollUp(animated:)``
18 |
19 + - ``Reer/scrollLeft(animated:)``
20 |
21 | - ``Reer/scrollRight(animated:)``
warning: 'scrollRight(animated:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIScrollViewExt_doc.md:21:10-21:32
19 | - ``Reer/scrollLeft(animated:)``
20 |
21 + - ``Reer/scrollRight(animated:)``
22 |
23 | - ``Reer/scrollDown(animated:)``
warning: 'scrollDown(animated:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIScrollViewExt_doc.md:23:10-23:31
21 | - ``Reer/scrollRight(animated:)``
22 |
23 + - ``Reer/scrollDown(animated:)``
warning: 'textField' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UISearchBarExt_doc.md:5:10-5:19
3 | ## Topics
4 |
5 + - ``Reer/textField``
6 |
7 | - ``Reer/trimmedText-52al3``
warning: 'trimmedText-52al3' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UISearchBarExt_doc.md:7:10-7:27
5 | - ``Reer/textField``
6 |
7 + - ``Reer/trimmedText-52al3``
  |          ╰─suggestion: Replace 'trimmedText-52al3' with 'trimmed'
8 |
9 | - ``Reer/clear()-1w9il``
warning: 'clear()-1w9il' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UISearchBarExt_doc.md:9:10-9:23
7 | - ``Reer/trimmedText-52al3``
8 |
9 + - ``Reer/clear()-1w9il``
warning: 'segmentTitles' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UISegmentedControlExt_doc.md:5:10-5:23
3 | ## Topics
4 |
5 + - ``Reer/segmentTitles``
6 |
7 | - ``Reer/segmentImages``
warning: 'segmentImages' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UISegmentedControlExt_doc.md:7:10-7:23
5 | - ``Reer/segmentTitles``
6 |
7 + - ``Reer/segmentImages``
warning: 'setValue(_:animated:duration:completion:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UISliderExt_doc.md:5:10-5:51
3 | ## Topics
4 |
5 + - ``Reer/setValue(_:animated:duration:completion:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UIStackViewExt_doc'
 --> Catalog/UIKit/UIStackViewExt_doc.md:5:5-5:10
3 | ## Topics
4 |
5 + - ``UIKit/UIStackView/re(arrangedSubviews:axis:spacing:alignment:distribution:)``
6 |
7 | - ``Reer/addArrangedSubviews(_:)``
warning: 'addArrangedSubviews(_:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIStackViewExt_doc.md:7:10-7:33
5 | - ``UIKit/UIStackView/re(arrangedSubviews:axis:spacing:alignment:distribution:)``
6 |
7 + - ``Reer/addArrangedSubviews(_:)``
8 |
9 | - ``Reer/removeArrangedSubviews()``
warning: 'removeArrangedSubviews()' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIStackViewExt_doc.md:9:10-9:34
7  | - ``Reer/addArrangedSubviews(_:)``
8  |
9  + - ``Reer/removeArrangedSubviews()``
10 |
11 | - ``Reer/swap(_:_:animated:duration:delay:options:completion:)``
warning: 'swap(_:_:animated:duration:delay:options:completion:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIStackViewExt_doc.md:11:10-11:63
9  | - ``Reer/removeArrangedSubviews()``
10 |
11 + - ``Reer/swap(_:_:animated:duration:delay:options:completion:)``
warning: 'main' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIStoryboardExt_doc.md:5:10-5:14
3 | ## Topics
4 |
5 + - ``Reer/main``
6 |
7 | - ``Reer/instantiateViewController(withClass:)``
warning: 'instantiateViewController(withClass:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIStoryboardExt_doc.md:7:10-7:47
5 | - ``Reer/main``
6 |
7 + - ``Reer/instantiateViewController(withClass:)``
warning: 'toggle(animated:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UISwitchExt_doc.md:5:10-5:27
3 | ## Topics
4 |
5 + - ``Reer/toggle(animated:)``
warning: 'setColors(background:selectedBackground:item:selectedItem:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UITabBarExt_doc.md:5:10-5:69
3 | ## Topics
4 |
5 + - ``Reer/setColors(background:selectedBackground:item:selectedItem:)``
warning: 'indexPathForLastRow' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UITableViewExt_doc.md:5:10-5:29
3 | ## Topics
4 |
5 + - ``Reer/indexPathForLastRow``
6 |
7 | - ``Reer/lastSection-3ki8l``
warning: 'lastSection-3ki8l' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UITableViewExt_doc.md:7:10-7:27
5 | - ``Reer/indexPathForLastRow``
6 |
7 + - ``Reer/lastSection-3ki8l``
8 |
9 | - ``Reer/numberOfRows()``
warning: 'numberOfRows()' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITableViewExt_doc.md:9:10-9:24
7  | - ``Reer/lastSection-3ki8l``
8  |
9  + - ``Reer/numberOfRows()``
   |          ├─suggestion: Replace 'numberOfRows()' with 'numberOfDaysInMonth(for:)'
   |          ├─suggestion: Replace 'numberOfRows()' with 'numberOfMatches(in:options:range:)'
   |          ╰─suggestion: Replace 'numberOfRows()' with 'numberOfLines(forWidth:ignoreBlankLines:)'
10 |
11 | - ``Reer/indexPathForLastRow(inSection:)``
warning: 'indexPathForLastRow(inSection:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITableViewExt_doc.md:11:10-11:41
9  | - ``Reer/numberOfRows()``
10 |
11 + - ``Reer/indexPathForLastRow(inSection:)``
12 |
13 | - ``Reer/reloadData(_:)-2orfe``
warning: 'reloadData(_:)-2orfe' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITableViewExt_doc.md:13:10-13:30
11 | - ``Reer/indexPathForLastRow(inSection:)``
12 |
13 + - ``Reer/reloadData(_:)-2orfe``
14 |
15 | - ``Reer/reloadHeight()``
warning: 'reloadHeight()' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITableViewExt_doc.md:15:10-15:24
13 | - ``Reer/reloadData(_:)-2orfe``
14 |
15 + - ``Reer/reloadHeight()``
16 |
17 | - ``Reer/removeTableFooterView()``
warning: 'removeTableFooterView()' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITableViewExt_doc.md:17:10-17:33
15 | - ``Reer/reloadHeight()``
16 |
17 + - ``Reer/removeTableFooterView()``
18 |
19 | - ``Reer/removeTableHeaderView()``
warning: 'removeTableHeaderView()' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITableViewExt_doc.md:19:10-19:33
17 | - ``Reer/removeTableFooterView()``
18 |
19 + - ``Reer/removeTableHeaderView()``
20 |
21 | - ``Reer/dequeueReusableCell(withClass:)``
warning: 'dequeueReusableCell(withClass:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITableViewExt_doc.md:21:10-21:41
19 | - ``Reer/removeTableHeaderView()``
20 |
21 + - ``Reer/dequeueReusableCell(withClass:)``
22 |
23 | - ``Reer/dequeueReusableCell(_:for:)-706ao``
warning: 'dequeueReusableCell(_:for:)-706ao' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITableViewExt_doc.md:23:10-23:43
21 | - ``Reer/dequeueReusableCell(withClass:)``
22 |
23 + - ``Reer/dequeueReusableCell(_:for:)-706ao``
24 |
25 | - ``Reer/dequeueReusableHeaderFooterView(_:)``
warning: 'dequeueReusableHeaderFooterView(_:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITableViewExt_doc.md:25:10-25:45
23 | - ``Reer/dequeueReusableCell(_:for:)-706ao``
24 |
25 + - ``Reer/dequeueReusableHeaderFooterView(_:)``
26 |
27 | - ``Reer/register(nib:withHeaderFooterViewClass:)``
warning: 'register(nib:withHeaderFooterViewClass:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITableViewExt_doc.md:27:10-27:50
25 | - ``Reer/dequeueReusableHeaderFooterView(_:)``
26 |
27 + - ``Reer/register(nib:withHeaderFooterViewClass:)``
28 |
29 | - ``Reer/register(headerFooterView:)``
warning: 'register(headerFooterView:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITableViewExt_doc.md:29:10-29:37
27 | - ``Reer/register(nib:withHeaderFooterViewClass:)``
28 |
29 + - ``Reer/register(headerFooterView:)``
30 |
31 | - ``Reer/register(cell:)-9xnyf``
warning: 'register(cell:)-9xnyf' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITableViewExt_doc.md:31:10-31:31
29 | - ``Reer/register(headerFooterView:)``
30 |
31 + - ``Reer/register(cell:)-9xnyf``
32 |
33 | - ``Reer/register(nib:withCellClass:)``
warning: 'register(nib:withCellClass:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITableViewExt_doc.md:33:10-33:38
31 | - ``Reer/register(cell:)-9xnyf``
32 |
33 + - ``Reer/register(nib:withCellClass:)``
34 |
35 | - ``Reer/register(nibWithCellClass:at:)-9yqj0``
warning: 'register(nibWithCellClass:at:)-9yqj0' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITableViewExt_doc.md:35:10-35:46
33 | - ``Reer/register(nib:withCellClass:)``
34 |
35 + - ``Reer/register(nibWithCellClass:at:)-9yqj0``
36 |
37 | - ``Reer/isValidIndexPath(_:)-2w7er``
warning: 'isValidIndexPath(_:)-2w7er' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITableViewExt_doc.md:37:10-37:36
35 | - ``Reer/register(nibWithCellClass:at:)-9yqj0``
36 |
37 + - ``Reer/isValidIndexPath(_:)-2w7er``
   |          ├─suggestion: Replace 'isValidIndexPath(_:)-2w7er' with 'isValidEmail'
   |          ├─suggestion: Replace 'isValidIndexPath(_:)-2w7er' with 'isValidUrl'
   |          ├─suggestion: Replace 'isValidIndexPath(_:)-2w7er' with 'isValidFileUrl'
   |          ├─suggestion: Replace 'isValidIndexPath(_:)-2w7er' with 'isValidHttpUrl'
   |          ├─suggestion: Replace 'isValidIndexPath(_:)-2w7er' with 'isValidHttpsUrl'
   |          ╰─suggestion: Replace 'isValidIndexPath(_:)-2w7er' with 'isValidSchemedUrl'
38 |
39 | - ``Reer/scrollToRow(at:at:animated:)``
warning: 'scrollToRow(at:at:animated:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITableViewExt_doc.md:39:10-39:38
37 | - ``Reer/isValidIndexPath(_:)-2w7er``
38 |
39 + - ``Reer/scrollToRow(at:at:animated:)``
warning: 'UIKit' doesn't exist at '/ReerKit/UITextFieldExt_doc'
 --> Catalog/UIKit/UITextFieldExt_doc.md:5:5-5:10
3 | ## Topics
4 |
5 + - ``UIKit/UITextField/TextType``
6 |
7 | - ``Reer/textType``
warning: 'textType' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UITextFieldExt_doc.md:7:10-7:18
5 | - ``UIKit/UITextField/TextType``
6 |
7 + - ``Reer/textType``
8 |
9 | - ``Reer/isEmpty``
warning: 'isEmpty' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITextFieldExt_doc.md:9:10-9:17
7  | - ``Reer/textType``
8  |
9  + - ``Reer/isEmpty``
   |          ├─suggestion: Replace 'isEmpty' with 'isNotEmpty'
   |          ╰─suggestion: Replace 'isEmpty' with 'isEmoji'
10 |
11 | - ``Reer/trimmedText-2mcf7``
warning: 'trimmedText-2mcf7' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITextFieldExt_doc.md:11:10-11:27
9  | - ``Reer/isEmpty``
10 |
11 + - ``Reer/trimmedText-2mcf7``
   |          ╰─suggestion: Replace 'trimmedText-2mcf7' with 'trimmed'
12 |
13 | - ``Reer/hasValidEmail``
warning: 'hasValidEmail' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITextFieldExt_doc.md:13:10-13:23
11 | - ``Reer/trimmedText-2mcf7``
12 |
13 + - ``Reer/hasValidEmail``
   |          ╰─suggestion: Replace 'hasValidEmail' with 'isValidEmail'
14 |
15 | - ``Reer/leftViewTintColor``
warning: 'leftViewTintColor' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITextFieldExt_doc.md:15:10-15:27
13 | - ``Reer/hasValidEmail``
14 |
15 + - ``Reer/leftViewTintColor``
16 |
17 | - ``Reer/rightViewTintColor``
warning: 'rightViewTintColor' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITextFieldExt_doc.md:17:10-17:28
15 | - ``Reer/leftViewTintColor``
16 |
17 + - ``Reer/rightViewTintColor``
18 |
19 | - ``Reer/clear()-1o3ze``
warning: 'clear()-1o3ze' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITextFieldExt_doc.md:19:10-19:23
17 | - ``Reer/rightViewTintColor``
18 |
19 + - ``Reer/clear()-1o3ze``
20 |
21 | - ``Reer/setPlaceHolderTextColor(_:)``
warning: 'setPlaceHolderTextColor(_:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITextFieldExt_doc.md:21:10-21:37
19 | - ``Reer/clear()-1o3ze``
20 |
21 + - ``Reer/setPlaceHolderTextColor(_:)``
22 |
23 | - ``Reer/addPaddingLeft(_:)``
warning: 'addPaddingLeft(_:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITextFieldExt_doc.md:23:10-23:28
21 | - ``Reer/setPlaceHolderTextColor(_:)``
22 |
23 + - ``Reer/addPaddingLeft(_:)``
24 |
25 | - ``Reer/addPaddingRight(_:)``
warning: 'addPaddingRight(_:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITextFieldExt_doc.md:25:10-25:29
23 | - ``Reer/addPaddingLeft(_:)``
24 |
25 + - ``Reer/addPaddingRight(_:)``
26 |
27 | - ``Reer/addPaddingLeftIcon(_:padding:)``
warning: 'addPaddingLeftIcon(_:padding:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITextFieldExt_doc.md:27:10-27:40
25 | - ``Reer/addPaddingRight(_:)``
26 |
27 + - ``Reer/addPaddingLeftIcon(_:padding:)``
28 |
29 | - ``Reer/addPaddingRightIcon(_:padding:)``
warning: 'addPaddingRightIcon(_:padding:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITextFieldExt_doc.md:29:10-29:41
27 | - ``Reer/addPaddingLeftIcon(_:padding:)``
28 |
29 + - ``Reer/addPaddingRightIcon(_:padding:)``
30 |
31 | - ``Reer/addToolbar(items:height:)``
warning: 'addToolbar(items:height:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITextFieldExt_doc.md:31:10-31:35
29 | - ``Reer/addPaddingRightIcon(_:padding:)``
30 |
31 + - ``Reer/addToolbar(items:height:)``
warning: 'clear()-5q1fi' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UITextViewExt_doc.md:5:10-5:23
3 | ## Topics
4 |
5 + - ``Reer/clear()-5q1fi``
6 |
7 | - ``Reer/scrollToBottom()``
warning: 'scrollToBottom()' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UITextViewExt_doc.md:7:10-7:26
5 | - ``Reer/clear()-5q1fi``
6 |
7 + - ``Reer/scrollToBottom()``
8 |
9 | - ``Reer/scrollToTop()``
warning: 'scrollToTop()' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITextViewExt_doc.md:9:10-9:23
7  | - ``Reer/scrollToBottom()``
8  |
9  + - ``Reer/scrollToTop()``
10 |
11 | - ``Reer/wrapToContent()``
warning: 'wrapToContent()' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UITextViewExt_doc.md:11:10-11:25
9  | - ``Reer/scrollToTop()``
10 |
11 + - ``Reer/wrapToContent()``
warning: 'isVisible' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIViewControllerExt_doc.md:5:10-5:19
3 | ## Topics
4 |
5 + - ``Reer/isVisible``
6 |
7 | - ``Reer/instantiate(from:bundle:identifier:)``
warning: 'instantiate(from:bundle:identifier:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIViewControllerExt_doc.md:7:10-7:46
5 | - ``Reer/isVisible``
6 |
7 + - ``Reer/instantiate(from:bundle:identifier:)``
8 |
9 | - ``Reer/addNotificationObserver(name:selector:)``
warning: 'addNotificationObserver(name:selector:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewControllerExt_doc.md:9:10-9:49
7  | - ``Reer/instantiate(from:bundle:identifier:)``
8  |
9  + - ``Reer/addNotificationObserver(name:selector:)``
10 |
11 | - ``Reer/removeNotificationsObserver()``
warning: 'removeNotificationsObserver()' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewControllerExt_doc.md:11:10-11:39
9  | - ``Reer/addNotificationObserver(name:selector:)``
10 |
11 + - ``Reer/removeNotificationsObserver()``
12 |
13 | - ``Reer/removeNotificationObserver(name:)``
warning: 'removeNotificationObserver(name:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewControllerExt_doc.md:13:10-13:43
11 | - ``Reer/removeNotificationsObserver()``
12 |
13 + - ``Reer/removeNotificationObserver(name:)``
14 |
15 | - ``Reer/showAlert(title:message:buttonTitles:highlightedButtonIndex:completion:)``
warning: 'showAlert(title:message:buttonTitles:highlightedButtonIndex:completion:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewControllerExt_doc.md:15:10-15:82
13 | - ``Reer/removeNotificationObserver(name:)``
14 |
15 + - ``Reer/showAlert(title:message:buttonTitles:highlightedButtonIndex:completion:)``
16 |
17 | - ``Reer/addChildViewController(_:toContainerView:)``
warning: 'addChildViewController(_:toContainerView:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewControllerExt_doc.md:17:10-17:52
15 | - ``Reer/showAlert(title:message:buttonTitles:highlightedButtonIndex:completion:)``
16 |
17 + - ``Reer/addChildViewController(_:toContainerView:)``
18 |
19 | - ``Reer/removeViewAndControllerFromParentViewController()``
warning: 'removeViewAndControllerFromParentViewController()' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewControllerExt_doc.md:19:10-19:59
17 | - ``Reer/addChildViewController(_:toContainerView:)``
18 |
19 + - ``Reer/removeViewAndControllerFromParentViewController()``
20 |
21 | - ``Reer/closeSelf(animated:completion:)``
warning: 'closeSelf(animated:completion:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewControllerExt_doc.md:21:10-21:41
19 | - ``Reer/removeViewAndControllerFromParentViewController()``
20 |
21 + - ``Reer/closeSelf(animated:completion:)``
22 |
23 | - ``Reer/presentPopover(_:sourcePoint:size:delegate:animated:completion:)``
warning: 'presentPopover(_:sourcePoint:size:delegate:animated:completion:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewControllerExt_doc.md:23:10-23:74
21 | - ``Reer/closeSelf(animated:completion:)``
22 |
23 + - ``Reer/presentPopover(_:sourcePoint:size:delegate:animated:completion:)``
24 |
25 |
warning: 'x-m2em' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIViewExt_doc.md:7:10-7:16
5 | ### Frame
6 |
7 + - ``Reer/x-m2em``
8 |
9 | - ``Reer/y-6tgfv``
warning: 'y-6tgfv' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:9:10-9:17
7  | - ``Reer/x-m2em``
8  |
9  + - ``Reer/y-6tgfv``
10 |
11 | - ``Reer/width-4yh4f``
warning: 'width-4yh4f' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:11:10-11:21
9  | - ``Reer/y-6tgfv``
10 |
11 + - ``Reer/width-4yh4f``
12 |
13 | - ``Reer/height-6ke2``
warning: 'height-6ke2' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:13:10-13:21
11 | - ``Reer/width-4yh4f``
12 |
13 + - ``Reer/height-6ke2``
   |          ╰─suggestion: Replace 'height-6ke2' with 'height(forWidth:)'
14 |
15 | - ``Reer/left-4xl0i``
warning: 'left-4xl0i' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:15:10-15:20
13 | - ``Reer/height-6ke2``
14 |
15 + - ``Reer/left-4xl0i``
16 |
17 | - ``Reer/right-53255``
warning: 'right-53255' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:17:10-17:21
15 | - ``Reer/left-4xl0i``
16 |
17 + - ``Reer/right-53255``
   |          ╰─suggestion: Replace 'right-53255' with 'brightness'
18 |
19 | - ``Reer/top-wa0c``
warning: 'top-wa0c' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:19:10-19:18
17 | - ``Reer/right-53255``
18 |
19 + - ``Reer/top-wa0c``
20 |
21 | - ``Reer/bottom-26jsy``
warning: 'bottom-26jsy' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:21:10-21:22
19 | - ``Reer/top-wa0c``
20 |
21 + - ``Reer/bottom-26jsy``
22 |
23 | - ``Reer/centerX-4213v``
warning: 'centerX-4213v' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:23:10-23:23
21 | - ``Reer/bottom-26jsy``
22 |
23 + - ``Reer/centerX-4213v``
   |          ╰─suggestion: Replace 'centerX-4213v' with 'center'
24 |
25 | - ``Reer/centerY-8voy5``
warning: 'centerY-8voy5' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:25:10-25:23
23 | - ``Reer/centerX-4213v``
24 |
25 + - ``Reer/centerY-8voy5``
   |          ╰─suggestion: Replace 'centerY-8voy5' with 'center'
26 |
27 | - ``Reer/origin-4gozl``
warning: 'origin-4gozl' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:27:10-27:22
25 | - ``Reer/centerY-8voy5``
26 |
27 + - ``Reer/origin-4gozl``
28 |
29 | - ``Reer/size-5l3mm``
warning: 'size-5l3mm' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:29:10-29:20
27 | - ``Reer/origin-4gozl``
28 |
29 + - ``Reer/size-5l3mm``
30 |
31 | ### CALayer Bridge
warning: 'borderColor' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:33:10-33:21
31 | ### CALayer Bridge
32 |
33 + - ``Reer/borderColor``
34 |
35 | - ``Reer/borderWidth``
warning: 'borderWidth' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:35:10-35:21
33 | - ``Reer/borderColor``
34 |
35 + - ``Reer/borderWidth``
36 |
37 | - ``Reer/cornerRadius``
warning: 'cornerRadius' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:37:10-37:22
35 | - ``Reer/borderWidth``
36 |
37 + - ``Reer/cornerRadius``
38 |
39 | - ``Reer/shadowColor``
warning: 'shadowColor' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:39:10-39:21
37 | - ``Reer/cornerRadius``
38 |
39 + - ``Reer/shadowColor``
   |          ╰─suggestion: Replace 'shadowColor' with 'nsColor'
40 |
41 | - ``Reer/shadowOffset``
warning: 'shadowOffset' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:41:10-41:22
39 | - ``Reer/shadowColor``
40 |
41 + - ``Reer/shadowOffset``
42 |
43 | - ``Reer/shadowOpacity``
warning: 'shadowOpacity' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:43:10-43:23
41 | - ``Reer/shadowOffset``
42 |
43 + - ``Reer/shadowOpacity``
44 |
45 | - ``Reer/shadowRadius``
warning: 'shadowRadius' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:45:10-45:22
43 | - ``Reer/shadowOpacity``
44 |
45 + - ``Reer/shadowRadius``
46 |
47 | - ``Reer/shadowPath``
warning: 'shadowPath' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:47:10-47:20
45 | - ``Reer/shadowRadius``
46 |
47 + - ``Reer/shadowPath``
48 |
49 | ### Properties
warning: 'snapshotImage' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:51:10-51:23
49 | ### Properties
50 |
51 + - ``Reer/snapshotImage``
52 |
53 | - ``Reer/firstResponder``
warning: 'firstResponder' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:53:10-53:24
51 | - ``Reer/snapshotImage``
52 |
53 + - ``Reer/firstResponder``
54 |
55 | - ``Reer/viewController``
warning: 'viewController' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:55:10-55:24
53 | - ``Reer/firstResponder``
54 |
55 + - ``Reer/viewController``
56 |
57 | - ``Reer/isGrayModeEnabled``
warning: 'isGrayModeEnabled' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:57:10-57:27
55 | - ``Reer/viewController``
56 |
57 + - ``Reer/isGrayModeEnabled``
58 |
59 | ### Methods
warning: 'snapshot(afterScreenUpdates:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:61:10-61:39
59 | ### Methods
60 |
61 + - ``Reer/snapshot(afterScreenUpdates:)``
62 |
63 | - ``Reer/color(at:)-95swn``
warning: 'color(at:)-95swn' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:63:10-63:26
61 | - ``Reer/snapshot(afterScreenUpdates:)``
62 |
63 + - ``Reer/color(at:)-95swn``
64 |
65 | - ``Reer/addSubviews(_:)``
warning: 'addSubviews(_:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:65:10-65:25
63 | - ``Reer/color(at:)-95swn``
64 |
65 + - ``Reer/addSubviews(_:)``
66 |
67 | - ``Reer/removeAllSubviews()``
warning: 'removeAllSubviews()' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:67:10-67:29
65 | - ``Reer/addSubviews(_:)``
66 |
67 + - ``Reer/removeAllSubviews()``
68 |
69 | - ``Reer/subviews(ofType:recursive:)``
warning: 'subviews(ofType:recursive:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:69:10-69:37
67 | - ``Reer/removeAllSubviews()``
68 |
69 + - ``Reer/subviews(ofType:recursive:)``
70 |
71 | - ``Reer/subviews(matching:recursive:)``
warning: 'subviews(matching:recursive:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:71:10-71:39
69 | - ``Reer/subviews(ofType:recursive:)``
70 |
71 + - ``Reer/subviews(matching:recursive:)``
72 |
73 | - ``Reer/firstSubview(ofType:recursive:)``
warning: 'firstSubview(ofType:recursive:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:73:10-73:41
71 | - ``Reer/subviews(matching:recursive:)``
72 |
73 + - ``Reer/firstSubview(ofType:recursive:)``
74 |
75 | - ``Reer/firstSubview(matching:recursive:)``
warning: 'firstSubview(matching:recursive:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:75:10-75:43
73 | - ``Reer/firstSubview(ofType:recursive:)``
74 |
75 + - ``Reer/firstSubview(matching:recursive:)``
76 |
77 | - ``Reer/subviewTree(maxDepth:)``
warning: 'subviewTree(maxDepth:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:77:10-77:32
75 | - ``Reer/firstSubview(matching:recursive:)``
76 |
77 + - ``Reer/subviewTree(maxDepth:)``
78 |
79 | - ``Reer/printSubviewTree(maxDepth:)``
warning: 'printSubviewTree(maxDepth:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:79:10-79:37
77 | - ``Reer/subviewTree(maxDepth:)``
78 |
79 + - ``Reer/printSubviewTree(maxDepth:)``
80 |
81 | - ``Reer/superview(ofType:)``
warning: 'superview(ofType:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:81:10-81:28
79 | - ``Reer/printSubviewTree(maxDepth:)``
80 |
81 + - ``Reer/superview(ofType:)``
82 |
83 | - ``Reer/superviews(maxLevel:)``
warning: 'superviews(maxLevel:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:83:10-83:31
81 | - ``Reer/superview(ofType:)``
82 |
83 + - ``Reer/superviews(maxLevel:)``
84 |
85 | - ``Reer/superview(matching:)``
warning: 'superview(matching:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:85:10-85:30
83 | - ``Reer/superviews(maxLevel:)``
84 |
85 + - ``Reer/superview(matching:)``
   |          ├─suggestion: Replace 'superview(matching:)' with 'none(matching:)'
   |          ├─suggestion: Replace 'superview(matching:)' with 'all(matching:)'
   |          ╰─suggestion: Replace 'superview(matching:)' with 'any(matching:)'
86 |
87 | - ``Reer/convert(point:toViewOrWindow:)``
warning: 'convert(point:toViewOrWindow:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:87:10-87:40
85 | - ``Reer/superview(matching:)``
86 |
87 + - ``Reer/convert(point:toViewOrWindow:)``
88 |
89 | - ``Reer/convert(point:fromViewOrWindow:)``
warning: 'convert(point:fromViewOrWindow:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:89:10-89:42
87 | - ``Reer/convert(point:toViewOrWindow:)``
88 |
89 + - ``Reer/convert(point:fromViewOrWindow:)``
90 |
91 | - ``Reer/convert(rect:toViewOrWindow:)``
warning: 'convert(rect:toViewOrWindow:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:91:10-91:39
89 | - ``Reer/convert(point:fromViewOrWindow:)``
90 |
91 + - ``Reer/convert(rect:toViewOrWindow:)``
92 |
93 | - ``Reer/convert(rect:fromViewOrWindow:)``
warning: 'convert(rect:fromViewOrWindow:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:93:10-93:41
91 | - ``Reer/convert(rect:toViewOrWindow:)``
92 |
93 + - ``Reer/convert(rect:fromViewOrWindow:)``
94 |
95 | - ``Reer/roundCorners(_:radius:)``
warning: 'roundCorners(_:radius:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:95:10-95:33
93 | - ``Reer/convert(rect:fromViewOrWindow:)``
94 |
95 + - ``Reer/roundCorners(_:radius:)``
   |          ╰─suggestion: Replace 'roundCorners(_:radius:)' with 'rounded(_:rule:)'
96 |
97 | - ``Reer/squircleRoundCorners(_:radius:)``
warning: 'squircleRoundCorners(_:radius:)' doesn't exist at '/ReerKit/Reer'
  --> Catalog/UIKit/UIViewExt_doc.md:97:10-97:41
95 | - ``Reer/roundCorners(_:radius:)``
96 |
97 + - ``Reer/squircleRoundCorners(_:radius:)``
98 |
99 | - ``Reer/addShadow(ofColor:radius:offset:opacity:path:)-151cr``
warning: 'addShadow(ofColor:radius:offset:opacity:path:)-151cr' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:99:10-99:62
97  | - ``Reer/squircleRoundCorners(_:radius:)``
98  |
99  + - ``Reer/addShadow(ofColor:radius:offset:opacity:path:)-151cr``
100 |
101 | - ``Reer/fadeIn(duration:completion:)``
warning: 'fadeIn(duration:completion:)' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:101:10-101:38
99  | - ``Reer/addShadow(ofColor:radius:offset:opacity:path:)-151cr``
100 |
101 + - ``Reer/fadeIn(duration:completion:)``
102 |
103 | - ``Reer/fadeOut(duration:completion:)``
warning: 'fadeOut(duration:completion:)' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:103:10-103:39
101 | - ``Reer/fadeIn(duration:completion:)``
102 |
103 + - ``Reer/fadeOut(duration:completion:)``
104 |
105 | - ``Reer/loadFromNib(withClass:bundle:)``
warning: 'loadFromNib(withClass:bundle:)' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:105:10-105:40
103 | - ``Reer/fadeOut(duration:completion:)``
104 |
105 + - ``Reer/loadFromNib(withClass:bundle:)``
106 |
107 | - ``Reer/loadFromNib(named:bundle:)``
warning: 'loadFromNib(named:bundle:)' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:107:10-107:36
105 | - ``Reer/loadFromNib(withClass:bundle:)``
106 |
107 + - ``Reer/loadFromNib(named:bundle:)``
108 |
109 | - ``Reer/removeGestureRecognizers()``
warning: 'removeGestureRecognizers()' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:109:10-109:36
107 | - ``Reer/loadFromNib(named:bundle:)``
108 |
109 + - ``Reer/removeGestureRecognizers()``
110 |
111 | - ``Reer/removeGestureRecognizers(_:)``
warning: 'removeGestureRecognizers(_:)' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:111:10-111:38
109 | - ``Reer/removeGestureRecognizers()``
110 |
111 + - ``Reer/removeGestureRecognizers(_:)``
112 |
113 | - ``Reer/addGestureRecognizers(_:)``
warning: 'addGestureRecognizers(_:)' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:113:10-113:35
111 | - ``Reer/removeGestureRecognizers(_:)``
112 |
113 + - ``Reer/addGestureRecognizers(_:)``
114 |
115 | ### Layout
warning: 'isRightToLeft' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:117:10-117:23
115 | ### Layout
116 |
117 + - ``Reer/isRightToLeft``
118 |
119 | - ``Reer/addConstraints(withFormat:views:)``
warning: 'addConstraints(withFormat:views:)' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:119:10-119:43
117 | - ``Reer/isRightToLeft``
118 |
119 + - ``Reer/addConstraints(withFormat:views:)``
    |          ╰─suggestion: Replace 'addConstraints(withFormat:views:)' with 'date(withFormat:)'
120 |
121 | - ``Reer/fillToSuperview()``
warning: 'fillToSuperview()' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:121:10-121:27
119 | - ``Reer/addConstraints(withFormat:views:)``
120 |
121 + - ``Reer/fillToSuperview()``
122 |
123 | - ``Reer/anchor(top:left:bottom:right:topConstant:leftConstant:bottomConstant:rightConstant:widthConstant:heightConstant:)``
warning: 'anchor(top:left:bottom:right:topConstant:leftConstant:bottomConstant:rightConstant:widthConstant:heightConstant:)' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:123:10-123:123
121 | - ``Reer/fillToSuperview()``
122 |
123 + - ``Reer/anchor(top:left:bottom:right:topConstant:leftConstant:bottomConstant:rightConstant:widthConstant:heightConstant:)``
124 |
125 | - ``Reer/anchorCenterXToSuperview(constant:)``
warning: 'anchorCenterXToSuperview(constant:)' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:125:10-125:45
123 | - ``Reer/anchor(top:left:bottom:right:topConstant:leftConstant:bottomConstant:rightConstant:widthConstant:heightConstant:)``
124 |
125 + - ``Reer/anchorCenterXToSuperview(constant:)``
126 |
127 | - ``Reer/anchorCenterYToSuperview(constant:)``
warning: 'anchorCenterYToSuperview(constant:)' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:127:10-127:45
125 | - ``Reer/anchorCenterXToSuperview(constant:)``
126 |
127 + - ``Reer/anchorCenterYToSuperview(constant:)``
128 |
129 | - ``Reer/anchorCenterSuperview()``
warning: 'anchorCenterSuperview()' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:129:10-129:33
127 | - ``Reer/anchorCenterYToSuperview(constant:)``
128 |
129 + - ``Reer/anchorCenterSuperview()``
130 |
131 | - ``Reer/findConstraint(attribute:for:)``
warning: 'findConstraint(attribute:for:)' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:131:10-131:40
129 | - ``Reer/anchorCenterSuperview()``
130 |
131 + - ``Reer/findConstraint(attribute:for:)``
    |          ╰─suggestion: Replace 'findConstraint(attribute:for:)' with 'with(attributes:)'
132 |
133 | - ``Reer/widthConstraint``
warning: 'widthConstraint' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:133:10-133:25
131 | - ``Reer/findConstraint(attribute:for:)``
132 |
133 + - ``Reer/widthConstraint``
134 |
135 | - ``Reer/heightConstraint``
warning: 'heightConstraint' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:135:10-135:26
133 | - ``Reer/widthConstraint``
134 |
135 + - ``Reer/heightConstraint``
    |          ╰─suggestion: Replace 'heightConstraint' with 'height(forWidth:)'
136 |
137 | - ``Reer/leadingConstraint``
warning: 'leadingConstraint' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:137:10-137:27
135 | - ``Reer/heightConstraint``
136 |
137 + - ``Reer/leadingConstraint``
138 |
139 | - ``Reer/trailingConstraint``
warning: 'trailingConstraint' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:139:10-139:28
137 | - ``Reer/leadingConstraint``
138 |
139 + - ``Reer/trailingConstraint``
140 |
141 | - ``Reer/topConstraint``
warning: 'topConstraint' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:141:10-141:23
139 | - ``Reer/trailingConstraint``
140 |
141 + - ``Reer/topConstraint``
142 |
143 | - ``Reer/bottomConstraint``
warning: 'bottomConstraint' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:143:10-143:26
141 | - ``Reer/topConstraint``
142 |
143 + - ``Reer/bottomConstraint``
144 |
145 | ### SwiftUI
warning: 'addSwiftUIView(_:)' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:147:10-147:28
145 | ### SwiftUI
146 |
147 + - ``Reer/addSwiftUIView(_:)``
148 |
149 | - ``Reer/insertSwiftUIView(_:at:)``
warning: 'insertSwiftUIView(_:at:)' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:149:10-149:34
147 | - ``Reer/addSwiftUIView(_:)``
148 |
149 + - ``Reer/insertSwiftUIView(_:at:)``
150 |
151 | - ``Reer/insertSwiftUIView(_:aboveSubview:)``
warning: 'insertSwiftUIView(_:aboveSubview:)' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:151:10-151:44
149 | - ``Reer/insertSwiftUIView(_:at:)``
150 |
151 + - ``Reer/insertSwiftUIView(_:aboveSubview:)``
152 |
153 | - ``Reer/insertSwiftUIView(_:belowSubview:)``
warning: 'insertSwiftUIView(_:belowSubview:)' doesn't exist at '/ReerKit/Reer'
   --> Catalog/UIKit/UIViewExt_doc.md:153:10-153:44
151 | - ``Reer/insertSwiftUIView(_:aboveSubview:)``
152 |
153 + - ``Reer/insertSwiftUIView(_:belowSubview:)``
warning: 'switchRootViewController(to:animated:duration:options:_:)' doesn't exist at '/ReerKit/Reer'
 --> Catalog/UIKit/UIWindowExt_doc.md:5:10-5:67
3 | ## Topics
4 |
5 + - ``Reer/switchRootViewController(to:animated:duration:options:_:)``
warning: 'Vibrator' doesn't exist at '/ReerKit/Utility_doc'
  --> Catalog/Utility_doc.md:21:5-21:13
19 | - ``TypeNameDescribable``
20 |
21 + - ``Vibrator``
22 |
23 | - ``OnceToken``
warning: 'FPSLabel' doesn't exist at '/ReerKit/Utility_doc'
  --> Catalog/Utility_doc.md:25:5-25:13
23 | - ``OnceToken``
24 |
25 + - ``FPSLabel``
26 |
27 | ### Memory
warning: Symbol links can only resolve symbols
  --> Catalog/Utility_doc.md:53:5-53:20
51 | ### KeyboardManager
52 |
53 + - ``KeyboardManager``
   |     ╰─suggestion: Use a '<doc:>' style reference.
54 |
55 | - ``KeyboardObserver``
warning: 'KeyboardObserver' doesn't exist at '/ReerKit/Utility_doc'
  --> Catalog/Utility_doc.md:55:5-55:21
53 | - ``KeyboardManager``
54 |
55 + - ``KeyboardObserver``
   |     ╰─suggestion: Replace 'KeyboardObserver' with 'KeyboardManager'
56 |
57 | - ``KeyboardTransition``
warning: 'KeyboardTransition' doesn't exist at '/ReerKit/Utility_doc'
  --> Catalog/Utility_doc.md:57:5-57:23
55 | - ``KeyboardObserver``
56 |
57 + - ``KeyboardTransition``
   |     ╰─suggestion: Replace 'KeyboardTransition' with 'KeyboardManager'
58 |
warning: Parameter 'Parameter aString' not found in instance method declaration
  --> ../StandardLibrary/StringProtocol+REExtensions.swift:34:13-34:80
32 |     ///
33 |     /// - Parameters:
34 +     ///     - Parameter aString: The string with which to compare the receiver.
   |             ╰─suggestion: Remove 'Parameter aString' parameter documentation
35 |     ///     - Parameter options: Options for the comparison.
36 |     /// - Returns: The longest common suffix of the receiver and the given String.
warning: Parameter 'Parameter options' not found in instance method declaration
  --> ../StandardLibrary/StringProtocol+REExtensions.swift:35:13-35:61
33 |     /// - Parameters:
34 |     ///     - Parameter aString: The string with which to compare the receiver.
35 +     ///     - Parameter options: Options for the comparison.
   |             ╰─suggestion: Remove 'Parameter options' parameter documentation
36 |     /// - Returns: The longest common suffix of the receiver and the given String.
37 |     func commonSuffix<T: StringProtocol>(with aString: T, options: String.CompareOptions = []) -> String {
warning: Parameter 'aString' is missing documentation
  --> ../StandardLibrary/StringProtocol+REExtensions.swift:35:61-35:61
33 |     /// - Parameters:
34 |     ///     - Parameter aString: The string with which to compare the receiver.
35 +     ///     - Parameter options: Options for the comparison.
   |                                                             ╰─suggestion: Document 'aString' parameter
36 |     /// - Returns: The longest common suffix of the receiver and the given String.
37 |     func commonSuffix<T: StringProtocol>(with aString: T, options: String.CompareOptions = []) -> String {
warning: Parameter 'options' is missing documentation
  --> ../StandardLibrary/StringProtocol+REExtensions.swift:35:61-35:61
33 |     /// - Parameters:
34 |     ///     - Parameter aString: The string with which to compare the receiver.
35 +     ///     - Parameter options: Options for the comparison.
   |                                                             ╰─suggestion: Document 'options' parameter
36 |     /// - Returns: The longest common suffix of the receiver and the given String.
37 |     func commonSuffix<T: StringProtocol>(with aString: T, options: String.CompareOptions = []) -> String {
Finished building documentation for 'ReerKit' (26.08s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/reers/reerkit/main
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.47s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (2.80s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.76s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.43s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Building for debugging...
[0/8] Write sources
[1/8] Write snippet-extract-tool-entitlement.plist
[3/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling SymbolKit GenericConstraint.swift
[7/53] Compiling SymbolKit GenericParameter.swift
[8/53] Compiling SymbolKit Generics.swift
[9/53] Compiling SymbolKit Namespace.swift
[10/57] Compiling SymbolKit Mixin+Equals.swift
[11/57] Compiling SymbolKit Mixin+Hash.swift
[12/57] Compiling SymbolKit Mixin.swift
[13/57] Compiling SymbolKit LineList.swift
[14/57] Compiling SymbolKit Position.swift
[15/57] Emitting module SymbolKit
[16/57] Compiling SymbolKit SourceRange.swift
[17/57] Compiling SymbolKit Metadata.swift
[18/57] Compiling SymbolKit Module.swift
[19/57] Compiling SymbolKit OperatingSystem.swift
[20/57] Compiling SymbolKit Platform.swift
[21/57] Compiling SymbolKit SemanticVersion.swift
[22/57] Compiling SymbolKit AccessControl.swift
[23/57] Compiling SymbolKit Availability.swift
[24/57] Compiling SymbolKit AvailabilityItem.swift
[25/57] Compiling SymbolKit Domain.swift
[26/57] Compiling SymbolKit DeclarationFragments.swift
[27/57] Compiling SymbolKit Fragment.swift
[28/57] Compiling SymbolKit FragmentKind.swift
[29/57] Compiling SymbolKit FunctionParameter.swift
[30/57] Compiling SymbolKit FunctionSignature.swift
[31/57] Compiling SymbolKit Names.swift
[32/57] Compiling SymbolKit SPI.swift
[33/57] Compiling SymbolKit Snippet.swift
[34/57] Compiling SymbolKit Extension.swift
[35/57] Compiling SymbolKit Relationship.swift
[36/57] Compiling SymbolKit RelationshipKind.swift
[37/57] Compiling SymbolKit SourceOrigin.swift
[38/57] Compiling SymbolKit GenericConstraints.swift
[39/57] Compiling SymbolKit Swift.swift
[40/57] Compiling SymbolKit Identifier.swift
[41/57] Compiling SymbolKit KindIdentifier.swift
[42/57] Compiling SymbolKit Location.swift
[43/57] Compiling SymbolKit Mutability.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Emitting module Snippets
[53/57] Compiling Snippets Snippet.swift
[54/57] Compiling Snippets SnippetParser.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Emitting module snippet_extract
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (3.66s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/127] Compiling ReerKit KeyboardManager.swift
[3/127] Compiling ReerKit Keychain.swift
[4/127] Compiling ReerKit MutexLock.swift
[5/127] Compiling ReerKit ReadWriteLock.swift
[6/127] Compiling ReerKit Synchronizing.swift
[7/127] Compiling ReerKit UnfairLock.swift
[8/127] Compiling ReerKit LinearFunction.swift
[9/127] Compiling ReerKit MulticastDelegate.swift
[10/127] Compiling ReerKit NanoID.swift
[11/127] Compiling ReerKit Once.swift
[12/127] Compiling ReerKit Clamped.swift
[13/127] Compiling ReerKit Locked.swift
[14/127] Compiling ReerKit RWLocked.swift
[15/127] Compiling ReerKit UIControl+REExtensions.swift
[16/127] Compiling ReerKit UIDevice+REExtensions.swift
[17/127] Compiling ReerKit UIFont+REExtensions.swift
[18/127] Compiling ReerKit UIGestureRecognizer+REExtensions.swift
[19/127] Compiling ReerKit UIImage+REExtensions.swift
[20/127] Compiling ReerKit UIImageView+REExtensions.swift
[21/127] Compiling ReerKit UILabel+REExtensions.swift
[22/127] Compiling ReerKit UINavigationBar+REExtensions.swift
[23/127] Compiling ReerKit UINavigationController+REExtensions.swift
[24/127] Compiling ReerKit UINavigationItem+REExtensions.swift
[25/127] Compiling ReerKit UIRefreshControl+REExtensions.swift
[26/127] Compiling ReerKit UIResponder+REExtensions.swift
[27/127] Compiling ReerKit UIScreen+REExtensions.swift
[28/127] Compiling ReerKit UIScrollView+REExtensions.swift
[29/127] Emitting module ReerKit
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Shared/EdgeInsets+REExtensions.swift:37:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 35 | }
 36 |
 37 | extension NSEdgeInsets: Equatable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |     /// ReerKit: Returns a Boolean value indicating whether two values are equal.
 39 |     ///
[30/127] Compiling ReerKit Bool+REExtensions.swift
[31/127] Compiling ReerKit Character+REExtensions.swift
[32/127] Compiling ReerKit Collection+REExtensions.swift
[33/127] Compiling ReerKit Comparable+REExtensions.swift
[34/127] Compiling ReerKit Decodable+REExtensions.swift
[35/127] Compiling ReerKit Dictionary+REExtensions.swift
[36/127] Compiling ReerKit Double+REExtensions.swift
[37/127] Compiling ReerKit Float+REExtensions.swift
[38/127] Compiling ReerKit FloatingPoint+REExtensions.swift
[39/127] Compiling ReerKit Int+REExtensions.swift
[40/127] Compiling ReerKit MutableCollection+REExtensions.swift
[41/127] Compiling ReerKit OptionSet+REExtensions.swift
[42/127] Compiling ReerKit Optional+REExtensions.swift
[43/127] Compiling ReerKit Range+REExtensions.swift
[44/140] Compiling ReerKit CAAnimation+REExtensions.swift
[45/140] Compiling ReerKit CAGradientLayer+REExtensions.swift
[46/140] Compiling ReerKit CALayer+REExtensions.swift
[47/140] Compiling ReerKit CATransform3D+REExtensions.swift
[48/140] Compiling ReerKit CGAffineTransform+REExtensions.swift
[49/140] Compiling ReerKit CGColor+REExtensions.swift
[50/140] Compiling ReerKit CGFloat+REExtensions.swift
[51/140] Compiling ReerKit CGPoint+REExtensions.swift
[52/140] Compiling ReerKit CGRect+REExtensions.swift
[53/140] Compiling ReerKit CGSize+REExtensions.swift
[54/140] Compiling ReerKit CGVector+REExtensions.swift
[55/140] Compiling ReerKit DispatchQueue+REExtensions.swift
[56/140] Compiling ReerKit Bundle+REExtensions.swift
[57/140] Compiling ReerKit Calendar+REExtensions.swift
[58/140] Compiling ReerKit ReerKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Shared/EdgeInsets+REExtensions.swift:37:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 35 | }
 36 |
 37 | extension NSEdgeInsets: Equatable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |     /// ReerKit: Returns a Boolean value indicating whether two values are equal.
 39 |     ///
[59/140] Compiling ReerKit Punycode.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Shared/EdgeInsets+REExtensions.swift:37:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 35 | }
 36 |
 37 | extension NSEdgeInsets: Equatable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |     /// ReerKit: Returns a Boolean value indicating whether two values are equal.
 39 |     ///
[60/140] Compiling ReerKit RSA.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Shared/EdgeInsets+REExtensions.swift:37:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 35 | }
 36 |
 37 | extension NSEdgeInsets: Equatable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |     /// ReerKit: Returns a Boolean value indicating whether two values are equal.
 39 |     ///
[61/140] Compiling ReerKit Color+REExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Shared/EdgeInsets+REExtensions.swift:37:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 35 | }
 36 |
 37 | extension NSEdgeInsets: Equatable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |     /// ReerKit: Returns a Boolean value indicating whether two values are equal.
 39 |     ///
[62/140] Compiling ReerKit EdgeInsets+REExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Shared/EdgeInsets+REExtensions.swift:37:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 35 | }
 36 |
 37 | extension NSEdgeInsets: Equatable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |     /// ReerKit: Returns a Boolean value indicating whether two values are equal.
 39 |     ///
[63/140] Compiling ReerKit Font+REExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Shared/EdgeInsets+REExtensions.swift:37:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 35 | }
 36 |
 37 | extension NSEdgeInsets: Equatable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |     /// ReerKit: Returns a Boolean value indicating whether two values are equal.
 39 |     ///
[64/140] Compiling ReerKit AnyObjectExtensionable.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Shared/EdgeInsets+REExtensions.swift:37:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 35 | }
 36 |
 37 | extension NSEdgeInsets: Equatable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |     /// ReerKit: Returns a Boolean value indicating whether two values are equal.
 39 |     ///
[65/140] Compiling ReerKit Associatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Shared/EdgeInsets+REExtensions.swift:37:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 35 | }
 36 |
 37 | extension NSEdgeInsets: Equatable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |     /// ReerKit: Returns a Boolean value indicating whether two values are equal.
 39 |     ///
[66/140] Compiling ReerKit DeinitObservable.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Shared/EdgeInsets+REExtensions.swift:37:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 35 | }
 36 |
 37 | extension NSEdgeInsets: Equatable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |     /// ReerKit: Returns a Boolean value indicating whether two values are equal.
 39 |     ///
[67/140] Compiling ReerKit OnceExecutable.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Shared/EdgeInsets+REExtensions.swift:37:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 35 | }
 36 |
 37 | extension NSEdgeInsets: Equatable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |     /// ReerKit: Returns a Boolean value indicating whether two values are equal.
 39 |     ///
[68/140] Compiling ReerKit Swizzlable.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Shared/EdgeInsets+REExtensions.swift:37:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 35 | }
 36 |
 37 | extension NSEdgeInsets: Equatable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |     /// ReerKit: Returns a Boolean value indicating whether two values are equal.
 39 |     ///
[69/140] Compiling ReerKit Array+REExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Shared/EdgeInsets+REExtensions.swift:37:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 35 | }
 36 |
 37 | extension NSEdgeInsets: Equatable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |     /// ReerKit: Returns a Boolean value indicating whether two values are equal.
 39 |     ///
[70/140] Compiling ReerKit BinaryFloatingPoint+REExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Shared/EdgeInsets+REExtensions.swift:37:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 35 | }
 36 |
 37 | extension NSEdgeInsets: Equatable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |     /// ReerKit: Returns a Boolean value indicating whether two values are equal.
 39 |     ///
[71/140] Compiling ReerKit BinaryInteger+REExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReerKit/Shared/EdgeInsets+REExtensions.swift:37:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 35 | }
 36 |
 37 | extension NSEdgeInsets: Equatable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |     /// ReerKit: Returns a Boolean value indicating whether two values are equal.
 39 |     ///
[72/140] Compiling ReerKit UISearchBar+REExtensions.swift
[73/140] Compiling ReerKit UISegmentedControl+REExtensions.swift
[74/140] Compiling ReerKit UISlider+REExtensions.swift
[75/140] Compiling ReerKit UIStackView+REExtensions.swift
[76/140] Compiling ReerKit UIStoryboard+REExtensions.swift
[77/140] Compiling ReerKit UISwitch+REExtensions.swift
[78/140] Compiling ReerKit UITabBar+REExtensions.swift
[79/140] Compiling ReerKit UITableView+REExtensions.swift
[80/140] Compiling ReerKit UITextField+REExtensions.swift
[81/140] Compiling ReerKit UITextView+REExtensions.swift
[82/140] Compiling ReerKit UIView+REExtensions.swift
[83/140] Compiling ReerKit UIViewController+REExtensions.swift
[84/140] Compiling ReerKit UIWindow+REExtensions.swift
[85/140] Compiling ReerKit CountdownTimer.swift
[86/140] Compiling ReerKit BinaryTree.swift
[87/140] Compiling ReerKit BoundedQueue.swift
[88/140] Compiling ReerKit LinkedList.swift
[89/140] Compiling ReerKit OrderedDictionary.swift
[90/140] Compiling ReerKit OrderedSet.swift
[91/140] Compiling ReerKit Queue.swift
[92/140] Compiling ReerKit Stack.swift
[93/140] Compiling ReerKit Tree.swift
[94/140] Compiling ReerKit Debouncer.swift
[95/140] Compiling ReerKit FPSLabel.swift
[96/140] Compiling ReerKit Memory.swift
[97/140] Compiling ReerKit DeinitObserver.swift
[98/140] Compiling ReerKit GlobalFunctions.swift
[99/140] Compiling ReerKit Invocation.swift
[100/140] Compiling ReerKit RangeReplaceableCollection+REExtensions.swift
[101/140] Compiling ReerKit Sequence+REExtensions.swift
[102/140] Compiling ReerKit Set+REExtensions.swift
[103/140] Compiling ReerKit SignedInteger+REExtensions.swift
[104/140] Compiling ReerKit SignedNumeric+REExtensions.swift
[105/140] Compiling ReerKit StdlibProtocolWrappers.swift
[106/140] Compiling ReerKit String+REExtensions.swift
[107/140] Compiling ReerKit StringProtocol+REExtensions.swift
[108/140] Compiling ReerKit UIAlertController+REExtensions.swift
[109/140] Compiling ReerKit UIApplication+REExtensions.swift
[110/140] Compiling ReerKit UIBarButtonItem+REExtensions.swift
[111/140] Compiling ReerKit UIBezierPath+REExtensions.swift
[112/140] Compiling ReerKit UIButton+REExtensions.swift
[113/140] Compiling ReerKit UICollectionView+REExtensions.swift
[114/140] Compiling ReerKit ContiguousBytes+REExtensions.swift
[115/140] Compiling ReerKit Data+REExtensions.swift
[116/140] Compiling ReerKit Date+REExtensions.swift
[117/140] Compiling ReerKit FileManager+REExtensions.swift
[118/140] Compiling ReerKit Locale+REExtensions.swift
[119/140] Compiling ReerKit NSAttributedString+REExtensions.swift
[120/140] Compiling ReerKit NSObject+REExtensions.swift
[121/140] Compiling ReerKit NSPredicate+REExtensions.swift
[122/140] Compiling ReerKit NSRange+REExtensions.swift
[123/140] Compiling ReerKit NSRegularExpression+REExtensions.swift
[124/140] Compiling ReerKit NotificationCenter+REExtensions.swift
[125/140] Compiling ReerKit Timer+REExtensions.swift
[126/140] Compiling ReerKit URL+REExtensions.swift
[127/140] Compiling ReerKit URLRequest+REExtensions.swift
[128/140] Compiling ReerKit Rounded.swift
[129/140] Compiling ReerKit Trimmed.swift
[130/140] Compiling ReerKit RETimer.swift
[131/140] Compiling ReerKit Reachability.swift
[132/140] Compiling ReerKit Throttler.swift
[133/140] Compiling ReerKit TypeNameDescribable.swift
[134/140] Compiling ReerKit Vibrator.swift
[135/140] Compiling ReerKit Weak.swift
[136/140] Compiling ReerKit WeakMap.swift
[137/140] Compiling ReerKit WeakProxy.swift
[138/140] Compiling ReerKit WeakSet.swift
[139/140] Compiling ReerKit WKWebView+REExtensions.swift
[140/140] Compiling ReerKit resource_bundle_accessor.swift
Build of target: 'ReerKit' complete! (2.36s)
    4320
31	/Users/admin/builder/spi-builder-workspace/.docs/reers/reerkit/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/reers/reerkit/main
File count: 4320
Doc size:   31.0MB
Preparing doc bundle ...
Uploading prod-reers-reerkit-main-fa6007c5.zip to s3://spi-docs-inbox/prod-reers-reerkit-main-fa6007c5.zip
Copying... [11%]
Copying... [21%]
Copying... [31%]
Copying... [41%]
Copying... [51%]
Copying... [61%]
Copying... [71%]
Copying... [81%]
Copying... [91%]
Copying... [100%]
Done.