Reads a complex vector from the stream.
Namespace:
Extreme.Data.Json
Assembly:
Extreme.Data.Json (in Extreme.Data.Json.dll) Version: 3.1.0
public override Vector<Complex<T>> ReadComplexVector<T>(
bool strict
)
Public Overrides Function ReadComplexVector(Of T) (
strict As Boolean
) As Vector(Of Complex(Of T))
public:
generic<typename T>
virtual Vector<Complex<T>>^ ReadComplexVector(
bool strict
) override
abstract ReadComplexVector :
strict : bool -> Vector<Complex<'T>>
override ReadComplexVector :
strict : bool -> Vector<Complex<'T>>
Parameters
- strict
- Type: SystemBoolean
Specifies whether the element type
should be matched exactly (), or whether
conversions are allowed ().
Type Parameters
- T
- The type of the real and imaginary parts
of the element type.
Return Value
Type:
VectorComplexTThe vector that was read from the stream.
Reference