Leonardo Herrera

Results 6 issues of Leonardo Herrera

Just a couple of things to make this compile under Delphi XE: - There is no `TRect.Width` nor `TRect.Height` under XE. I've changed to calls to `RectWidth` and `RectHeight` which...

As described in #68, we need to convert the data in the GeoIP2 database to a faster memory structure. In order to do this, I'm thinking of iterating the search...

enhancement

I've been programming with Scala for a few months now, but I still don't understand how (and if) can I get a better error messages from Argonaut. Currently, I have...

For protobuf `RepeatedField` collections (which are read-only and implements `ICollection` and `IList` among others) there are no `With*` methods generated.

Using `or` in enum matches currently displays error EM0001 in the IDE: ``` sortOrder switch { SomeEnum.Unknown or SomeEnum.NewestFirst => someValue, SomeEnum.OldestFirst => anotherValue, => throw ExhaustiveMatch.Failed(sortOrder) } ```

Protobuf generated entities seem to work well with `BuilderGenerator` but collections don't get generated. Protobuf collections are of type `RepeatedField` which are read-only properties that implement `IEnumerable`.

enhancement