The i-th char after self (in code point)

assert 'A' + 5 == 'F'

Alias of successor.

Property definitions

core $ Char :: +
	# The `i`-th char after self (in code point)
	#
	# ~~~
	# assert 'A' + 5 == 'F'
	# ~~~
	#
	# Alias of `successor`.
	fun +(i: Int): Char do return successor(i)
lib/core/kernel.nit:922,2--929,43