Function median3

pub(in ::slice::sort::shared::pivot) fn median3<T, F: FnMut(&T, &T) -> bool>(a: &T, b: &T, c: &T, is_less: &mut F) -> *const T

Calculates the median of 3 elements.

SAFETY: a, b, c must be valid initialized elements.