Pop multiple elements from the sequence

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)

Syntax

         
 C#  Visual Basic  Visual C++ 
public T[] PopMulti(
	int count,
	BACK_OR_FRONT backOrFront
)
Public Function PopMulti ( _
	count As Integer, _
	backOrFront As BACK_OR_FRONT _
) As T()
public:
array<T>^ PopMulti(
	int count, 
	BACK_OR_FRONT backOrFront
)

Parameters

count
Int32
The number of elements to be poped
backOrFront
BACK_OR_FRONT
The location the pop operation is started

Return Value

The elements poped from the sequence

See Also