irx.typecheck

irx.typecheck

Source: packages/irx/src/irx/typecheck.py

title: Runtime type-checking helpers.

Functions

skip_unused(*args: Any, **kwargs: Any) -> None

title: Referencing variables to pacify static analyzers.
parameters:
  args:
    type: Any
    variadic: positional
  kwargs:
    type: Any
    variadic: keyword

copy_type(f: _T) -> Callable[[Any], _T]

title: Copy types for args, kwargs from parent class.
parameters:
  f:
    type: _T
returns:
  type: Callable[[Any], _T]