Results 844 comments of Francisco Giordano

I can confirm this issue.

Thanks for the suggestion! I consider this repo to be a proof of concept and not necessarily production ready, so I'd rather keep the code as a clean demonstration than...

What is the current thinking on this feature? Array-heavy code could definitely benefit from it.

Sorry I'm late to this PR. My thoughts are: - For loops in Yul have very unfamiliar syntax, at the moment we don't have any in the entire codebase, and...

Thanks! Some more context in https://github.com/OpenZeppelin/openzeppelin-contracts/issues/3457. Need to decide on whether it's worth keeping this for error reporting.

We don't have documentation on this but we should.

We really want to do this but strictly want Truffle/Web3.js to support custom errors before we change to them. Otherwise, the change would be a downgrade in Dev Experience for...

A heap data structure would be a pretty cool addition. O(log n) queue and dequeue operations are acceptable. Can you please give example use cases?

Sorting algorithms are O(n log n) so they may run out of gas with large arrays, which may be manipulable by users and become an attack vector. Specific contracts may...

Hm, I'm not sure Fibonacci heaps are acceptable for this context. I have to admit I'm not super familiar with them but they apparently can have high overhead which will...