solidity-generators
solidity-generators copied to clipboard
Solidity library offering linspace, arange, and logspace methods to generate evenly spaced arrays.
Results
1
solidity-generators issues
Sort by
recently updated
recently updated
newest added
See [`Array.prototype.fill`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/fill). When used like this in JavaScript: ```javascript Array(5).fill(2) ``` It will yield the following output: ```javascript [2, 2, 2, 2, 2] ``` It seems to me that `solidity-generators`...