Source code for pudding.datatypes.or_

"""Data type for the or character."""

from .data import Data


[docs] class Or(Data): """Class representing the character `|`.""" regex = r"\|"