Samuel Ibarra
Samuel Ibarra
### Bug description When using `Set` collection in mojo, all works if is a variable. When it's constant using alias, `Set` only works if the constructor has no arguments. When...
### Bug description This is a very specific case when we are trying to build a wrapper for async functions, using a struct that receives functions as parameters to return...
### Bug description When a function is trying to capture a variable from the outside, the server crashes if the function signature doesn't contain the `capturing` keyword. ### Steps to...
### Bug description Tensor is a Register Passable Type, but the compiler complains when a tensor is specified in the tuple getter. ### Steps to reproduce If we check with...
### Bug description A struct with a parametrized type, who is also the return type of a function parameter (or argument) is not making the compiler happy. No matter if...
### Bug description ### Actual behavior As title, this is raising an "use of uninitialized value 'val1'" ### Expected behavior This should not have an error ### Steps to reproduce...
### Review Mojo's priorities - [x] I have read the [roadmap and priorities](https://docs.modular.com/mojo/roadmap.html#overall-priorities) and I believe this request falls within the priorities. ### What is your request? Expose the LSP...
Fixes https://github.com/modular/modular/issues/4579 By adding an overload for List.__contains__ where the types are not the same, cannot be implicitly converted, but can be compared one to the other (StringSlices with distinct...
### Bug description ### Actual behavior List.__contains__ expect both types to be the same, in order to compare both values. It means, if we try to use two distinct StringSlices,...