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

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

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

