Converts the object to a vector with the specified element type.
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
Vector<T> ToVector<T>(
bool strict = true
)
Function ToVector(Of T) (
Optional strict As Boolean = true
) As Vector(Of T)
generic<typename T>
Vector<T>^ ToVector(
bool strict = true
)
abstract ToVector :
?strict : bool
(* Defaults:
let _strict = defaultArg strict true
*)
-> Vector<'T>
Parameters
- strict (Optional)
- Type: SystemBoolean
Specifies whether the element type
should be matched exactly (), or whether
conversions are allowed ().
Type Parameters
- T
- The element type of the vector
Return Value
Type:
VectorTThe new vector.
Reference