Skip to content

Data Extensions

Marco Quinten edited this page Feb 28, 2021 · 1 revision
/// Initialize data with secure random numbers.
///
/// - Parameter count: The number of random bytes.
init (randomWith count : Int)

/// Append data to this instance, creating a new `Data` instance.
///
/// - Parameter data: The `Data` instance to be appended.
/// - Returns: The combined data.
func appending(_ data : Data) -> Data
Clone this wiki locally