Pop multiple elements from the sequence

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

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