ak.mixin_class_method
---------------------

.. py:module: ak.mixin_class_method

Defined in `awkward.behaviors.mixins <https://github.com/scikit-hep/awkward/blob/36da52cfa8846355c390beb6555eac1d31c27c26/src/awkward/behaviors/mixins.py>`__ on `line 74 <https://github.com/scikit-hep/awkward/blob/36da52cfa8846355c390beb6555eac1d31c27c26/src/awkward/behaviors/mixins.py#L74>`__.

.. py:function:: ak.mixin_class_method(ufunc, rhs=None, *, transpose=True)


    :param ufunc: A universal function (or NEP18 callable) that is
              hooked in Awkward Array, i.e. it can be the first argument of a behavior.
    :type ufunc: numpy.ufunc
    :param rhs: Set of right-hand side argument types, optional
            if wrapping a unary function. The left-hand side is expected to
            always be ``self`` of the parent class. The current class is implicitly
            included in this set.
    :type rhs: Set[type] or None
    :param transpose: If true, automatically create a transpose signature
                  (only makes sense for binary ufuncs).
    :type transpose: bool

This decorator can be used to register a mixin class method.

Using this decorator ensures that derived classes that are declared with the
:py:obj:`ak.mixin_class` decorator will also have the behaviors that this class has.