Function
arrayMove
Moves a range of objects into another range of objects.
Include Headers
seqan/basic.h
Parameters
|  Iterator to the first element of the source range. | |
|  Iterator behind the last element of the source range. | |
|  Iterator to the first element of the target range.  The target capacity should be at least as long as the source range. | 
Remarks
 The function possibly clears (but does not destroy) the source elements.
	If source elements must persist, consider to use arrayCopy instead.
 If source and target range do not overlap, consider to use
	arrayMoveForward instead to improve performance.
SeqAn - Sequence Analysis Library - www.seqan.de