You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need in my code to distinguish LinkedMap and Map as a field declaration, and function parameter. Using LInkedHashMap is inconvenient, because required always to cast result of Value.toLinkedMap(...) method to LInkedHashMap. Having Intermediate interface LinkedMap like SortedMap, will be very helpful.
Similar applies to LinkedSet interface.
The text was updated successfully, but these errors were encountered:
I would gladly use new Java interfaces, but io.vavr.collection.LinkedHashMap is not supporting it.
It will be great if LinkedHashMap implement LinkedMap interface or SequencedMap interface.
Similar io.vavr.collection.LinkedHashSet is implementing Set interface. So if you define LinkedSet or SequencedSet interface that will be implemented by LinkedHashSet, it will be great, also.
I need in my code to distinguish LinkedMap and Map as a field declaration, and function parameter. Using LInkedHashMap is inconvenient, because required always to cast result of Value.toLinkedMap(...) method to LInkedHashMap. Having Intermediate interface LinkedMap like SortedMap, will be very helpful.
Similar applies to LinkedSet interface.
The text was updated successfully, but these errors were encountered: