
{{alias}}( value )
    Tests if an input value is a BLAS operation side.

    Parameters
    ----------
    value: any
        Value to test.

    Returns
    -------
    bool: boolean
        Boolean indicating if an input value is an operation side.

    Examples
    --------
    > var bool = {{alias}}( 'right' )
    true
    > bool = {{alias}}( 'left' )
    true
    > bool = {{alias}}( '' )
    false
    > bool = {{alias}}( 'beep' )
    false

    See Also
    --------

