vavr
vavr copied to clipboard
Multimaps with ContainerType.SEQ are inefficient
ContainerType.SEQ is based on io.vavr.collection.List, which has linear complexity for append(). See Performance Characteristics.
io.vavr.collection.Vector would probably be a better choice here. Alternatively, an option to use custom ContainerType implementations would be useful.