CallExpr

public struct CallExpr: ClangCursorBacked

An expression that calls a function.

  • Retrieve the argument cursor of a function or method. The argument cursor can be determined for calls as well as for declarations of functions or methods.

    Declaration

    Swift

    public func parameter(at index: Int) -> Cursor?
  • Retrieve the return type of the function.

    Declaration

    Swift

    public var resultType: CType?