Return a new Array with the elements only contened in self and not in o

Property definitions

nitc :: abstract_compiler $ Array :: -
	# Return a new `Array` with the elements only contened in self and not in `o`
	fun -(o: Array[E]): Array[E] do
		var res = new Array[E]
		for e in self do if not o.has(e) then res.add(e)
		return res
	end
src/compiler/abstract_compiler.nit:4621,2--4626,4