:mod:`cloup.typing` =================== .. py:module:: cloup.typing Attributes ---------- .. autoapisummary:: cloup.typing.MISSING cloup.typing.Possibly cloup.typing.AnyCallable cloup.typing.F cloup.typing.Decorator Contents -------- .. py:data:: MISSING Singleton that works as a sentinel for a missing value. Useful when None can't be used to play the role because it represents a valid non-null value. .. py:data:: Possibly Possibly[T] is like Optional[T] but uses MISSING for missing values. .. py:data:: AnyCallable .. py:data:: F Type variable for a Callable. .. py:data:: Decorator Type alias for a simple function decorator.