Functions

The following functions are available globally.

  • Compares the left hand side to the right hand side - Returns: TRUE if equal, FALSE if not

    Declaration

    Swift

    public func ==(lhs: Logger.LogLevel, rhs: Logger.LogLevel) -> Bool

    Return Value

    TRUE if equal, FALSE if not

  • Compares the left hand side to the right hand side - Returns: TRUE if lhs < rhs, FALSE if not

    Declaration

    Swift

    public func <(lhs: Logger.LogLevel, rhs: Logger.LogLevel) -> Bool

    Return Value

    TRUE if lhs < rhs, FALSE if not

  • Compares the left hand side to the right hand side - Returns: TRUE if lhs > rhs, FALSE if not

    Declaration

    Swift

    public func >(lhs: Logger.LogLevel, rhs: Logger.LogLevel) -> Bool

    Return Value

    TRUE if lhs > rhs, FALSE if not

  • Compares the left hand side to the right hand side - Returns: TRUE if lhs >= rhs, FALSE if not

    Declaration

    Swift

    public func >=(lhs: Logger.LogLevel, rhs: Logger.LogLevel) -> Bool

    Return Value

    TRUE if lhs >= rhs, FALSE if not

  • Compares the left hand side to the right hand side - Returns: TRUE if lhs <= rhs, FALSE if not

    Declaration

    Swift

    public func <=(lhs: Logger.LogLevel, rhs: Logger.LogLevel) -> Bool

    Return Value

    TRUE if lhs <= rhs, FALSE if not