/// Sort an array using bubble sort
///
/// # Parameters
///
/// - `arr`: A vector to sort in-place
///
/// # Type parameters
///
/// - `T`: A type that can be checked for equality and ordering e.g. a `i32`, a
/// `u8`, or a `f32`.
///
/// # Examples
///
/// ```rust
/// use algorithmplus::sort::bubble_sort;
///
/// let mut ls = vec![3, 2, 1];
/// bubble_sort(&mut ls);
///
/// assert_eq!(ls, [1, 2, 3]);
/// ```