Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
0 から 255 までの値を含む UInt8 配列があります
-128 ~ 127 の値を含めるために、この配列を Int8 配列に変換したいと考えています。
これを迅速に達成する方法は?
これを使用して [UInt8] を [Int8] に変換できます。
for el in uint8Array { uint8Array.append(UInt8(bitPattern: el)) }