Adds element to sequence beginning (cvSeqPushFront).
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
public virtual T PushFront<T>(
T element
)
where T : struct, new()
Public Overridable Function PushFront(Of T As {Structure, New}) (
element As T
) As T
public:
generic<typename T>
where T : value class, gcnew()
virtual T PushFront(
T element
)
abstract PushFront :
element : 'T -> 'T when 'T : struct, new()
override PushFront :
element : 'T -> 'T when 'T : struct, new()
Parameters
- element
- Type: T
Added element.
Type Parameters
- T
- Element type
Return Value
Type:
Tpointer to the added element
Reference