Gru

Results 16 comments of Gru

I also think this would be useful. The search would be in the same quick action dropdown that shows the buffer list.

To the question about use cases: There are certainly widely spread use cases where avoiding these small allocations can be very useful. Let's say I am doing game development in...

I would also like to see this library as a nuget package, for .NET Core, with streamlined library loading. I did manage to get it to run with a little...

Any progress on this issue?

Was able to resolve the issue by installing: https://github.com/felixrieseberg/windows-build-tools AND closing the terminal afterwards.

I don't think the list continuations are implementable in a satisfactory way with the current architecture, as they seem to be implemented with CSS counter which is reset on certain...

If I understand correctly, part of what you'd like is already available: ``` C# namespace ConsoleApplication1 { using UserId = Int16; using FirstName = String; using SurName = String; using...

Yes. I think there could be value in allowing it to be scoped the same way as the namespace and allowing this to compile: ```C# using IntMap = Dictionary; ```

I think in addition to the desires of #259 proposal, this proposal brings a couple of functional programming habits into C#. For example, the desire to clearly carve out the...