实例方法
shuffled(using:)
返回序列的元素,使用给定的生成器作为随机源进行混洗。
声明
func shuffled<T>(using generator: inout T) -> [Self.Element] where T : RandomNumberGenerator
返回值
此序列的元素按打乱顺序排列的数组。
参数
generator
改组序列时使用的随机数生成器。
详述
当您使用自定义随机数生成器时,您可以使用此方法随机化序列的元素。例如,您可以通过在该范围内调用 shuffled(using:)
方法来打乱 0
和 9
之间的数字:
let numbers = 0...9
let shuffledNumbers = numbers.shuffled(using: &myGenerator)
// shuffledNumbers == [8, 9, 4, 3, 2, 6, 7, 0, 5, 1]
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相关用法
- Swift IndexingIterator shuffled()用法及代码示例
- Swift IndexingIterator split(maxSplits:omittingEmptySubsequences:whereSeparator:)用法及代码示例
- Swift IndexingIterator sorted()用法及代码示例
- Swift IndexingIterator suffix(_:)用法及代码示例
- Swift IndexingIterator sorted(by:)用法及代码示例
- Swift IndexingIterator starts(with:)用法及代码示例
- Swift IndexingIterator split(separator:maxSplits:omittingEmptySubsequences:)用法及代码示例
- Swift IndexingIterator prefix(_:)用法及代码示例
- Swift IndexingIterator elementsEqual(_:)用法及代码示例
- Swift IndexingIterator dropLast(_:)用法及代码示例
- Swift IndexingIterator joined(separator:)用法及代码示例
- Swift IndexingIterator filter(_:)用法及代码示例
- Swift IndexingIterator prefix(while:)用法及代码示例
- Swift IndexingIterator contains(_:)用法及代码示例
- Swift IndexingIterator flatMap(_:)用法及代码示例
- Swift IndexingIterator allSatisfy(_:)用法及代码示例
- Swift IndexingIterator lexicographicallyPrecedes(_:)用法及代码示例
- Swift IndexingIterator enumerated()用法及代码示例
- Swift IndexingIterator max(by:)用法及代码示例
- Swift IndexingIterator contains(where:)用法及代码示例
- Swift IndexingIterator min()用法及代码示例
- Swift IndexingIterator max()用法及代码示例
- Swift IndexingIterator reduce(_:_:)用法及代码示例
- Swift IndexingIterator min(by:)用法及代码示例
- Swift IndexingIterator dropFirst(_:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 IndexingIterator shuffled(using:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。