用于从位数组构建位模式的代码在 Xcode 9 中给了我错误(适用于 8.3.3)
@_specialize(UInt8)
func integerFrom<T: UnsignedInteger>(_ bits: Array<Bit>) -> T {
var bitPattern: T = 0
for idx in bits.indices {
if bits[idx] == Bit.one {
let bit = T(UIntMax(1) << UIntMax(idx))
bitPattern = bitPattern | bit
}
}
return bitPattern
}
错误
'_specialize 属性'中的未知参数 UInt8
对此有任何线索/建议吗?