Now that we are using helpers for building Bounds, let's improve the syntax by making those helpers return Option<Bound> directly.
So that instead of Some(Bound::inclusive(key)) or Some(Bound::exclusive(key)), we can just write Bound::inclusive(key) / Bound::exclusive(key).
Now that we are using helpers for building
Bounds, let's improve the syntax by making those helpers returnOption<Bound>directly.So that instead of
Some(Bound::inclusive(key))orSome(Bound::exclusive(key)), we can just writeBound::inclusive(key)/Bound::exclusive(key).