/// Check whether the given value is present in the array or not.
///
/// # Example
/// ```rust
/// use lo_::without;
/// let array = vec![1, 2, 3, 4];
/// let remove = vec![1, 3, 4];
/// let result = without(&array, &remove);
/// assert_eq!(result, vec![2]);
///
/// ```