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