Reads all vectors with the specified element type from the data stream.
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public Dictionary<string, Vector<T>> ReadAllVectors<T>(
bool strict = true
)
Public Function ReadAllVectors(Of T) (
Optional strict As Boolean = true
) As Dictionary(Of String, Vector(Of T))
public:
generic<typename T>
Dictionary<String^, Vector<T>^>^ ReadAllVectors(
bool strict = true
)
member ReadAllVectors :
?strict : bool
(* Defaults:
let _strict = defaultArg strict true
*)
-> Dictionary<string, Vector<'T>>
Parameters
- strict (Optional)
- Type: SystemBoolean
Specifies whether the element type
should be matched exactly (, the default), or whether
conversions are allowed ().
Type Parameters
- T
- The element type of the vectors.
Return Value
Type:
DictionaryString,
VectorTA dictionary containing the vectors
read from the data stream using their name as the key.
Reference