Files
AzooKeyKanaKanjiConverter/Sources/SwiftUtils/DataUtils.swift
2025-06-15 19:30:51 +09:00

27 lines
706 B
Swift

//
// extension Data.swift
// azooKey
//
// Created by ensan on 2022/10/22.
// Copyright © 2022 ensan. All rights reserved.
//
package import Foundation
package extension Data {
/// Converts this data to an array of the given type.
/// - Parameter:
/// - type: The type to convert this data to.
/// - Returns: An array of the given type.
func toArray<T>(of type: T.Type) -> [T] {
self.withUnsafeBytes {pointer -> [T] in
Array(
UnsafeBufferPointer(
start: pointer.baseAddress!.assumingMemoryBound(to: type),
count: pointer.count / MemoryLayout<T>.size
)
)
}
}
}