
{{alias}}( operation )
    Returns the enumeration constant associated with a BLAS transpose operation.

    Downstream consumers of this function should *not* rely on specific integer
    values (e.g., `TRANSPOSE == 0`). Instead, the function should be used in an
    opaque manner.

    Parameters
    ----------
    operation: string
        Transpose operation.

    Returns
    -------
    out: integer|null
        Enumeration constant.

    Examples
    --------
    > var out = {{alias}}( 'transpose' )
    <number>

    See Also
    --------

