pub fn unify_values(values: &mut [Value]) -> Result<(), Error>
Expand description

Attempts to unify all provided values to compatible types.

Currently this only ensures the following:

  1. If any of the values are null, all the values are converted to Option types.
  2. This function is applied recursively to sequences within the given values.