//! Constructor functions for the multi-select widget
use MultiSelect;
/// Create a basic multi-select widget
///
/// # Example
/// ```rust,ignore
/// let select = multi_select()
/// .option("Apple")
/// .option("Banana");
/// ```
/// Create a multi-select from an iterable of strings
///
/// # Example
/// ```rust,ignore
/// let fruits = vec!["Apple", "Banana", "Cherry"];
/// let select = multi_select_from(fruits);
/// ```