RealPredicate

public enum RealPredicate

The condition codes available for floating comparison instructions.

  • No comparison, always returns false.

    Declaration

    Swift

    case `false`
  • Ordered and equal.

    Declaration

    Swift

    case orderedEqual
  • Ordered less than.

    Declaration

    Swift

    case orderedLessThan
  • Ordered and not equal.

    Declaration

    Swift

    case orderedNotEqual
  • Ordered (no nans).

    Declaration

    Swift

    case ordered
  • Unordered (either nans).

    Declaration

    Swift

    case unordered
  • Unordered or equal.

    Declaration

    Swift

    case unorderedEqual
  • No comparison, always returns true.

    Declaration

    Swift

    case `true`
  • Retrieves the corresponding LLVMRealPredicate.

    Declaration

    Swift

    public var llvm: LLVMRealPredicate