/** * \brief Return the the array size of a constant array. * * If a non-array type is passed in, -1 is returned. */ func (t Type) ArraySize() int64 { o := C.clang_getArraySize(t.c) return int64(o) }
/* Return the array size of a constant array. If a non-array type is passed in, -1 is returned. */ func (t Type) ArraySize() int64 { return int64(C.clang_getArraySize(t.c)) }