vavr icon indicating copy to clipboard operation
vavr copied to clipboard

Multimaps with ContainerType.SEQ are inefficient

Open ric2016 opened this issue 1 year ago • 0 comments

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.

ric2016 avatar Jul 30 '24 12:07 ric2016