EvalResult

public enum EvalResult

Represents the result of evaluating a CXCursor

  • int

    The cursor evaluated to an integer value.

    Declaration

    Swift

    case int(Int)
  • The cursor evaluated to a floating-point value.

    Declaration

    Swift

    case float(Double)
  • The cursor evaluated to an Objective-C String Literal.

    Declaration

    Swift

    case objcStringLiteral(String)
  • The cursor evaluated to a NUL-terminated C String literal (char *).

    Declaration

    Swift

    case stringLiteral(String)
  • The cursor evaluated to a Core Foundation CFString literal.

    Declaration

    Swift

    case cfStringLiteral(String)
  • The cursor evaluated to another kind of value, currently unavailable.

    Declaration

    Swift

    case other
  • The cursor evaluated to an explicitly unexposed value.

    Declaration

    Swift

    case unexposed