// SPDX-FileCopyrightText: 2020 Robin Krahl <robin.krahl@ireas.org>
// SPDX-License-Identifier: Apache-2.0 or MIT
//! Merge strategies for vectors.
//!
//! These strategies are only available if the `std` feature is enabled.
/// Overwrite left with right if left is empty.
/// Append the contents of right to left.
/// Prepend the contents of right to left.