I might be wrong, but some complexities are specified wrong, at least for LinkedList?:
final uint remove (V value, bool all = false); // should be O(n), not O(1) AFAIK
final uint replace (V oldElement, V newElement, bool all = false); // ditto here
There might be others, I didn't take a deep look.