/// Slutter
///
/// Replace every value in a stack with two occurrences of that value.
///
/// # Examples
///
/// Basic usage:
/// ```
/// let result = algorithmz::stack::slutter(vec![3, 7, 1, 14, 9]);
/// assert_eq!(result, vec![3, 3, 7, 7, 1, 1, 14, 14, 9, 9]);
/// ```