NAME
	exclude_array

SYNOPSYS
	mixed exclude_array(mixed array, int from, int to)

DESCRIPTION
	Returns the array 'array' minus a sub-section that is removed.

ARGUMENTS
	mixed array - the array to remove a section from.
	int from - the index of the first element to leave out.
	int to - the index of the last element to leave out.

EXAMPLE
	exclude_array( ({ 1, 2, 3, 4 }), 1, 1) -> ({ 1, 3, 4 })
