From a9d45042f6a195f8240c04bf395a5783260e037d Mon Sep 17 00:00:00 2001 From: Tim Vermeulen Date: Fri, 9 Apr 2021 20:31:30 +0200 Subject: [PATCH] Make the `base` property of `UniquePermutations` internal --- Sources/Algorithms/Permutations.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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]