If self contains only digits <= '7', return the corresponding integer.

assert "714".to_oct == 460

Property definitions

core $ Text :: to_oct
	# If `self` contains only digits <= '7', return the corresponding integer.
	#
	# ~~~
	# assert "714".to_oct == 460
	# ~~~
	fun to_oct: Int do return a_to(8)
lib/core/text/abstract_text.nit:292,2--297,34