fromStaticArray_bytes14_2
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
Name | Type | Description |
---|---|---|
_value | bytes14[2] | The static array to copy. |
Returns
Name | Type | Description |
---|---|---|
_result | bytes14[] | The dynamic array. |