实例方法
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 String.UTF16View shuffled()用法及代码示例
- Swift String.UTF16View starts(with:)用法及代码示例
- Swift String.UTF16View suffix(from:)用法及代码示例
- Swift String.UTF16View subscript(_:)用法及代码示例
- Swift String.UTF16View suffix(_:)用法及代码示例
- Swift String.UTF16View sorted()用法及代码示例
- Swift String.UTF16View sorted(by:)用法及代码示例
- Swift String.UTF16View split(maxSplits:omittingEmptySubsequences:whereSeparator:)用法及代码示例
- Swift String.UTF16View split(separator:maxSplits:omittingEmptySubsequences:)用法及代码示例
- Swift String.UTF16View firstIndex(where:)用法及代码示例
- Swift String.UTF16View last(where:)用法及代码示例
- Swift String.UTF16View flatMap(_:)用法及代码示例
- Swift String.UTF16View min(by:)用法及代码示例
- Swift String.UTF16View min()用法及代码示例
- Swift String.UTF16View isEmpty用法及代码示例
- Swift String.UTF16View indices用法及代码示例
- Swift String.UTF16View map(_:)用法及代码示例
- Swift String.UTF16View lexicographicallyPrecedes(_:)用法及代码示例
- Swift String.UTF16View index(_:offsetBy:)用法及代码示例
- Swift String.UTF16View description用法及代码示例
- Swift String.UTF16View reduce(into:_:)用法及代码示例
- Swift String.UTF16View firstIndex(of:)用法及代码示例
- Swift String.UTF16View allSatisfy(_:)用法及代码示例
- Swift String.UTF16View enumerated()用法及代码示例
- Swift String.UTF16View reversed()用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 String.UTF16View shuffled(using:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。