作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想做这样的事情:
let sequence1 = stride(from: Int32(2), by: 2)
for (i, address) in zip(sequence1, addresses) {
sqlite3_bind_int64(stmt, i, address.userID)
sqlite3_bind_int(stmt, i+1, address.deviceID)
}
但是 stride(from:by:)
不存在。
我知道我可以将第一行更改为:
let sequence1 = stride(from: Int32(2), through: Int32.max, by: 2)
或:
let sequence1 = sequence(first: Int32(2), next: { $0 + 2 })
而且我知道 Swift 有单边范围,例如 PartialRangeFrom
,但 Swift 是否有一边倒的步伐?
相关:
最佳答案
不,Swift 中没有单方面的进步。
对于一个一般的(惰性评估的)序列迭代你的第二个整数
let sequence1 = sequence(first: Int32(2), next: { $0 + 2 })
是一种简单、清晰且灵活的解决方案。另一种选择是
let sequence1 = (Int32(1)...).lazy.map { $0 * 2 }
在您的特定情况下,我会简单地使用单边范围:
for (i, address) in zip(Int32(1)..., addresses) {
sqlite3_bind_int64(stmt, 2 * i, address.userID)
sqlite3_bind_int(stmt, 2 * i + 1, address.deviceID)
}
关于swift - Swift 有单方面的进步吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61294915/
我是一名优秀的程序员,十分优秀!