实例方法
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 Dictionary shuffled()用法及代码示例
- Swift Dictionary subscript(_:default:)用法及代码示例
- Swift Dictionary suffix(from:)用法及代码示例
- Swift Dictionary subscript(_:)用法及代码示例
- Swift Dictionary suffix(_:)用法及代码示例
- Swift Dictionary sorted(by:)用法及代码示例
- Swift Dictionary split(maxSplits:omittingEmptySubsequences:whereSeparator:)用法及代码示例
- Swift Dictionary allSatisfy(_:)用法及代码示例
- Swift Dictionary values用法及代码示例
- Swift Dictionary dropFirst(_:)用法及代码示例
- Swift Dictionary firstIndex(where:)用法及代码示例
- Swift Dictionary first(where:)用法及代码示例
- Swift Dictionary merge(_:uniquingKeysWith:)用法及代码示例
- Swift Dictionary isEmpty用法及代码示例
- Swift Dictionary reduce(_:_:)用法及代码示例
- Swift Dictionary init(uniqueKeysWithValues:)用法及代码示例
- Swift Dictionary makeIterator()用法及代码示例
- Swift Dictionary randomElement()用法及代码示例
- Swift Dictionary init(grouping:by:)用法及代码示例
- Swift Dictionary dropLast(_:)用法及代码示例
- Swift Dictionary min(by:)用法及代码示例
- Swift Dictionary max(by:)用法及代码示例
- Swift Dictionary updateValue(_:forKey:)用法及代码示例
- Swift Dictionary removeValue(forKey:)用法及代码示例
- Swift Dictionary map(_:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Dictionary shuffled(using:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。