pyvista.core._validation.check.check_integer#
- check_integer( )[source]#
Check if an array has integer or integer-like float values.
- Parameters:
- Raises:
ValueError
If any element’s value differs from its floor.
TypeError
If
strict=True
and the array’s dtype is not integral.
See also
Examples
Check if an array has integer-like values.
>>> from pyvista import _validation >>> _validation.check_integer([1.0, 2.0])