Is the character at index a space or a tab

Return false if index > self.length.

Property definitions

markdown2 :: markdown_block_parsing $ String :: is_space_or_tab
	# Is the character at `index` a space or a tab
	#
	# Return false if `index > self.length`.
	private fun is_space_or_tab(index: Int): Bool do
		if index >= length then return false
		var c = chars[index]
		return c == ' ' or c == '\t'
	end
lib/markdown2/markdown_block_parsing.nit:1495,2--1502,4