Ë
    b?1iL  ã                   ó\   — d Z ddlmZ ddlmZ e G d„ d«      «       Ze G d„ d«      «       Zy)	z	Extremes.é    )Útotal_ordering)ÚAnyc                   ó   — e Zd ZdZdefd„Zy)ÚAbsMaxar  An object that is greater than any other object (except itself).

    Inspired by https://pypi.python.org/pypi/Extremes.

    Examples:
        >>> from sys import maxint
        >>> AbsMax > AbsMin
        # Output: True
        >>> AbsMax > maxint
        # Output: True
        >>> AbsMax > 99999999999999999
        # Output: True

    > *New in version 0.2.0*.
    Úotherc                 ó   — |t         uS )zGreaterThanOrEqual.)r   ©Úselfr   s     ú^/home/www/therecruiter.miabetepe.com/venv/lib/python3.12/site-packages/validators/_extremes.pyÚ__ge__zAbsMax.__ge__   ó   € àœFÐ"Ð"ó    N)Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   r   © r   r   r   r      ó   „ ñð #˜Cô #r   r   c                   ó   — e Zd ZdZdefd„Zy)ÚAbsMina_  An object that is less than any other object (except itself).

    Inspired by https://pypi.python.org/pypi/Extremes.

    Examples:
        >>> from sys import maxint
        >>> AbsMin < -maxint
        # Output: True
        >>> AbsMin < None
        # Output: True
        >>> AbsMin < ''
        # Output: True

    > *New in version 0.2.0*.
    r   c                 ó   — |t         uS )zLessThanOrEqual.)r   r	   s     r   Ú__le__zAbsMin.__le__1   r   r   N)r   r   r   r   r   r   r   r   r   r   r      r   r   r   N)r   Ú	functoolsr   Útypingr   r   r   r   r   r   ú<module>r      sB   ðÙ õ %Ý ð ÷#ð #ó ð#ð, ÷#ð #ó ñ#r   