Function is_distributive_over
pub fn is_distributive_over<T, Mul, Add>(
elements: &[T],
multiply: Mul,
add: Add,
) -> boolExpand description
Returns whether multiply distributes over add from both sides on
elements.