¿Cómo verificar si la orientación del dispositivo es horizontal hacia la izquierda o hacia la derecha rápidamente?

    if UIDeviceOrientationIsLandscape(UIDevice.currentDevice().orientation) {
        print("landscape")
    }
    if UIDeviceOrientationIsPortrait(UIDevice.currentDevice().orientation){
        print("portrait")
    }

¿Cómo puedo verificar si es horizontal izquierda o derecha?