Array
-
Undocumented
Declaration
Swift
func toArguments() -> [Flow.Argument]
-
Undocumented
Declaration
Swift
func toValue() -> [Flow.Cadence.FValue]
-
Convert to
Data
typeDeclaration
Swift
var data: Data { get }
-
Convert bytes to hex string
Declaration
Swift
var hexValue: String { get }
-
Mutate data with adding zero padding to the left until fulfil the block size
Declaration
Swift
@discardableResult mutating func padZeroLeft(blockSize: Int) -> [UInt8]
Parameters
blockSize
The size of block.
Return Value
self in
Data
type. -
Mutate data with adding zero padding to the right until fulfil the block size
Declaration
Swift
@discardableResult mutating func padZeroRight(blockSize: Int) -> [UInt8]
Parameters
blockSize
The size of block.
Return Value
self in
Data
type. -
Add zero padding to the left until fulfil the block size
Declaration
Swift
func paddingZeroLeft(blockSize: Int) -> [UInt8]
Parameters
blockSize
The size of block.
Return Value
A new
[UInt8]
type with padding zero. -
Add zero padding to the right until fulfil the block size
Declaration
Swift
func paddingZeroRight(blockSize: Int) -> [UInt8]
Parameters
blockSize
The size of block.
Return Value
A new
[UInt8]
type with padding zero.