MCPcopy Create free account
hub / github.com/BTCGPU/BTCGPU / Cat

Function Cat

src/bech32.cpp:28–32  ·  view source on GitHub ↗

Concatenate two byte arrays. */

Source from the content-addressed store, hash-verified

26
27/** Concatenate two byte arrays. */
28data Cat(data x, const data& y)
29{
30 x.insert(x.end(), y.begin(), y.end());
31 return x;
32}
33
34/** This function will compute what 6 5-bit values to XOR into the last 6 input values, in order to
35 * make the checksum 0. These 6 values are packed together in a single 30-bit integer. The higher

Callers 3

VerifyChecksumFunction · 0.85
CreateChecksumFunction · 0.85
EncodeFunction · 0.85

Calls 3

insertMethod · 0.45
endMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected