fromStaticArray_bytes14_2

Git Source

Copy a static array to a dynamic array.

Static arrays don't have a length prefix, so this function copies the memory from the static array to a new dynamic array.

function fromStaticArray_bytes14_2(bytes14[2] memory _value) pure returns (bytes14[] memory _result);

Parameters

NameTypeDescription
_valuebytes14[2]The static array to copy.

Returns

NameTypeDescription
_resultbytes14[]The dynamic array.