/** * \brief For cursors representing an iboutletcollection attribute, * this function returns the collection element type. * */ func (c Cursor) IBOutletCollectionType() Type { o := C.clang_getIBOutletCollectionType(c.c) return Type{o} }
/* For cursors representing an iboutletcollection attribute, this function returns the collection element type. */ func (c Cursor) IBOutletCollectionType() Type { return Type{C.clang_getIBOutletCollectionType(c.c)} }