qubit-value 0.7.8

Type-safe value container framework with unified abstractions for single values, multi-values, and named values with complete serde support
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/

use qubit_value::MultiValues;

#[test]
fn test_multi_values_named_adders_append_expected_values() {
    let mut values = MultiValues::String(vec!["a".to_string()]);
    values.add_string("b".to_string()).unwrap();
    values
        .add_strings(vec!["c".to_string(), "d".to_string()])
        .unwrap();
    values.add_strings_slice(&["e".to_string()]).unwrap();

    assert_eq!(values.get_strings().unwrap(), &["a", "b", "c", "d", "e"]);
}