This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: Unlicense | |
/* | |
* @title Solidity Bytes Arrays Utils | |
* @author Gonçalo Sá <goncalo.sa@consensys.net> | |
* | |
* @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. | |
* The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. | |
*/ | |
pragma solidity >=0.8.0 <0.9.0; |