Skip to content

Commit

Permalink
Make the base property of UniquePermutations internal (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Vermeulen authored Apr 9, 2021
1 parent abc5559 commit 78dd4b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Sources/Algorithms/Permutations.swift
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,8 @@ extension Collection {
/// `uniquePermutations` methods on your collection.
public struct UniquePermutations<Base: Collection> {
/// The base collection to iterate over for permutations.
public let base: Base
@usableFromInline
internal let base: Base

@usableFromInline
internal var indexes: [Base.Index]
Expand Down

0 comments on commit 78dd4b5

Please sign in to comment.