Martin Verzilli

Results 26 comments of Martin Verzilli

Perdón entonces, mala mía :P

Removing the limit would mean that you could store an arbitrary number of elements in an Array, and still be oblivious to the implications of that. I think if you're...

@TomAFrench this has now been superceded by https://github.com/noir-lang/noir/pull/4122, which should have also addressed all your comments here. @ggiraldez mentioning you here in case you weren't aware of this PR. @nthiad...

> dammit seems like it doesn't add the documentation label when non-maintainers add stuff to docs, so it doesn't generate a preview... bah, need to fix that because it's annoying...

Thanks for the review @signorecello! Addressed most of the comments, except: - The part about adding more of these docs to CLAP (will work on that on a different PR)....

Absolutely newbie question: Is this `-fPIC` flag something that we can safely add to the build configuration or do you know of any downsides? The documentation starts with "If supported...

I think it makes complete sense! Do you want to take a stab at it?

Hi! I'll be glad to help you, but I'd rather not just port Vector from Ruby's stdlib. When starting Crystalla, I was trying to borrow ideas and APIs mainly from...

Thanks for sharing! Actually, we don't have a Vector abstraction but we do have some convenience methods to create row and column vectors in Matrix. For example, see: https://github.com/mverzilli/crystalla/blob/master/spec/matrix_spec.cr#L71 That...

This seems to exhibit the same behaviour as your script: ``` crystal require "crystalla" include Crystalla class HouseValidator def initialize(data : Hash(Matrix, String), position : Matrix) @data = data @position...