# Examples from pyvista.core._validation.check.check_less_than
# ============================================================

# Check if an array's values are less than 0.
from pyvista import _validation
_validation.check_less_than([-1, -2, -3], value=0)

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code

