Gets the index of the first occurence of 'c'

Returns -1 if not found

Property definitions

core $ Text :: index_of
	# Gets the index of the first occurence of 'c'
	#
	# Returns -1 if not found
	fun index_of(c: Char): Int
	do
		return index_of_from(c, 0)
	end
lib/core/text/abstract_text.nit:111,2--117,4