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

assert 'F' - 5 == 'A'

Alias of predecessor.

Property definitions

core $ Char :: -
	# The `i`-th char before self (in code point)
	#
	# ~~~
	# assert 'F' - 5 == 'A'
	# ~~~
	#
	# Alias of `predecessor`.
	fun -(i: Int): Char do return predecessor(i)
lib/core/kernel.nit:931,2--938,45