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
Currently, Deque does not implement the PartialEq and Eq traits. This hinders structures that contain a Deque from being able to derive PartialEq and Eq. Equally, it requires library consumers to implement their own comparison algorithm. This algorithm can be implemented once in the library, improving the useability of the Deque.
The same algorithm used for the standard VecDeque could be implemented here.
The text was updated successfully, but these errors were encountered:
Currently,
Deque
does not implement thePartialEq
andEq
traits. This hinders structures that contain aDeque
from being able to derivePartialEq
andEq
. Equally, it requires library consumers to implement their own comparison algorithm. This algorithm can be implemented once in the library, improving the useability of theDeque
.The same algorithm used for the standard
VecDeque
could be implemented here.The text was updated successfully, but these errors were encountered: