Maurycy Markowski

Results 53 issues of Maurycy Markowski

There is no straightforward translation to built-in functions for these, but we could do something like this: ```cs string.Join("", Enumerable.Repeat("foo", 10)) -> REPLICATE('foo', 10) ``` ```cs string.Join('', "foo".Reverse()) -> REVERSE('foo')...

type-enhancement
area-query

Currently (some) exception messages there are hard-coded

type-cleanup
customer-reported

Regular primitive collections (`Ints` in the example) get discovered by convention. However when the collection is backed by a private field, they are not. One needs to explicitly mark them...

area-primitive-collections