mirror of
https://github.com/lil-org/tokenary.git
synced 2024-12-14 22:45:54 +03:00
61 lines
1.3 KiB
Swift
61 lines
1.3 KiB
Swift
//
|
|
// This source file is part of the Web3Swift.io open source project
|
|
// Copyright 2018 The Web3Swift Authors
|
|
// Licensed under Apache License v2.0
|
|
//
|
|
// CompactHexString.swift
|
|
//
|
|
// Created by Vadim Koleoshkin on 16/06/2018
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/** A string that represents hexadecimal numbers in a compact way */
|
|
public final class CompactHexString: StringScalar {
|
|
|
|
private let hex: StringScalar
|
|
|
|
/**
|
|
Ctor
|
|
|
|
- parameters:
|
|
- hex: a string describing a hexadecimal
|
|
*/
|
|
public init(hex: StringScalar) {
|
|
self.hex = TrimmedPrefixString(
|
|
string: UnprefixedHexString(
|
|
hex: hex
|
|
),
|
|
prefix: SimpleString(
|
|
string: "0"
|
|
)
|
|
)
|
|
}
|
|
|
|
/**
|
|
Ctor
|
|
|
|
- parameters:
|
|
- bytes: bytes of a hexadecimal
|
|
*/
|
|
public convenience init(bytes: BytesScalar) {
|
|
self.init(
|
|
hex: UnprefixedHexString(
|
|
bytes: bytes
|
|
)
|
|
)
|
|
}
|
|
|
|
/**
|
|
- returns:
|
|
`String` representation of a string describing a hexadecimal
|
|
|
|
- throws:
|
|
`DescribedError` if something went wrong
|
|
*/
|
|
public func value() throws -> String {
|
|
return try hex.value()
|
|
}
|
|
|
|
}
|