Skip to content

Commit 78dd4b5

Browse files
author
Tim Vermeulen
authored
Make the base property of UniquePermutations internal (#125)
1 parent abc5559 commit 78dd4b5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Sources/Algorithms/Permutations.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,8 @@ extension Collection {
398398
/// `uniquePermutations` methods on your collection.
399399
public struct UniquePermutations<Base: Collection> {
400400
/// The base collection to iterate over for permutations.
401-
public let base: Base
401+
@usableFromInline
402+
internal let base: Base
402403

403404
@usableFromInline
404405
internal var indexes: [Base.Index]

0 commit comments

Comments
 (0)