Return pointer to the address to the second element of this array

This is the standard + operator on pointers in C

Property definitions

c $ NativeCArray :: +
	# Return pointer to the address to the second element of this array
	#
	# This is the standard `+` operator on pointers in C
	fun +(offset: Int): SELF is abstract
lib/c/c.nit:79,2--82,37

c $ NativeCByteArray :: +
	redef fun +(offset) `{ return self + offset; `}
lib/c/c.nit:202,2--48

c $ NativeCIntArray :: +
	redef fun +(offset) `{ return self + offset; `}
lib/c/c.nit:118,2--48

c $ NativeCUInt16Array :: +
	redef fun +(offset) `{ return self + offset; `}
lib/c/c.nit:154,2--48

c $ NativeCStringArray :: +
	redef fun +(offset) `{ return self + offset; `}
lib/c/c.nit:244,2--48

c :: c $ CString :: +
	redef fun +(offset) `{ return self + offset; `}
lib/c/c.nit:251,2--48