// Hash computes a hash value for the cursor func (c Cursor) Hash() uint { o := C.clang_hashCursor(c.c) return uint(o) }
// Compute a hash value for the given cursor. func (c Cursor) HashCursor() uint32 { return uint32(C.clang_hashCursor(c.c)) }