# HG changeset patch # User Chris Cannam # Date 1638353361 0 # Wed Dec 01 10:09:21 2021 +0000 # Node ID df6ba7eaf295c0ab28877096d72789d21fb84b19 # Parent 707cb0cd94ff6dea113585ebd63430ac87ece1cf Correction - now only "most of" the same api diff --git a/README.md b/README.md --- a/README.md +++ b/README.md @@ -181,10 +181,10 @@ double-ended queue containers. These are immutable containers like the Basis vector with the addition of update, append, and pop-from-end operations which return new (partly shared) containers. The queue -supports all of the same operations plus prepend and pop-from-start, -but its plain iteration (`foldl`) is not as fast as the array. For -both containers, all of the update, append, prepend, and pop -operations take time independent of the container size. +supports most of the same operations as the array plus prepend and +pop-from-start, but its plain iteration (`foldl`) is not as fast as +the array. For both containers, all of the update, append, prepend, +and pop operations take time independent of the container size. Note that these containers are competitive only if both immutability and general updating are desired. A vector is faster to tabulate and