
	removeDuplicated(vector: Array, [sorted: Boolean = false]): Array
	
		Returns an array without the duplicated values.
		
			vector array that will be analyzed
			sorted pass true only if the array is already sorted, to obtain better performance
		
	
