[std][BTree] Update ::append docs

This commit is contained in:
tinnamchoi 2025-08-21 19:03:07 +08:00
parent 084e6e7320
commit 002a09ae9e
No known key found for this signature in database

View file

@ -1160,6 +1160,10 @@ impl<K, V, A: Allocator + Clone> BTreeMap<K, V, A> {
///
/// If a key from `other` is already present in `self`, the respective
/// value from `self` will be overwritten with the respective value from `other`.
/// Similar to [`insert`], though, the key is not overwritten,
/// which matters for types that can be `==` without being identical.
///
/// [`insert`]: BTreeMap::insert
///
/// # Examples
///