Closed Erigara closed 1 year ago
I've noticed that range method doesn't provide Q: ?Sized bounds in contrast with BTreeMap::range so i added missing type bound.
range
Q: ?Sized
BTreeMap::range
This bound could be useful for types like T: RangeBounds<dyn Trait>.
T: RangeBounds<dyn Trait>
Thank you @Erigara !
I've noticed that
range
method doesn't provideQ: ?Sized
bounds in contrast withBTreeMap::range
so i added missing type bound.This bound could be useful for types like
T: RangeBounds<dyn Trait>
.