Integrate content from the other set into this one

Property definitions

nitc $ ForeignCallbackSet :: join
	# Integrate content from the `other` set into this one
	fun join(other: ForeignCallbackSet)
	do
		callbacks.add_all( other.callbacks )
		supers.add_all( other.supers )
		types.add_all( other.types )
		casts.add_all( other.casts )
	end
src/nitni/nitni_callbacks.nit:76,2--83,4