Insert before the current item

Property definitions

core $ ListIterator :: insert_before
	# Insert before the current item
	fun insert_before(element: E)
	do
		_list.insert_before(element, _node.as(not null))
	end
lib/core/collection/list.nit:306,2--310,4