mirror of
https://github.com/lil-org/tokenary.git
synced 2024-11-30 03:04:17 +03:00
12 lines
200 B
Swift
12 lines
200 B
Swift
// Copyright © 2023 Tokenary. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
extension FixedWidthInteger {
|
|
|
|
init?(hexString: String) {
|
|
self.init(hexString.cleanHex, radix: 16)
|
|
}
|
|
|
|
}
|