diff --git a/Sources/Algorithms/Permutations.swift b/Sources/Algorithms/Permutations.swift index e11d8467..29e6459f 100644 --- a/Sources/Algorithms/Permutations.swift +++ b/Sources/Algorithms/Permutations.swift @@ -398,7 +398,8 @@ extension Collection { /// `uniquePermutations` methods on your collection. public struct UniquePermutations { /// The base collection to iterate over for permutations. - public let base: Base + @usableFromInline + internal let base: Base @usableFromInline internal var indexes: [Base.Index]