Reads all vectors from a stream.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static Dictionary<string, Vector<T>> ReadAllVectors<T>(
Stream stream
)
Public Shared Function ReadAllVectors(Of T) (
stream As Stream
) As Dictionary(Of String, Vector(Of T))
public:
generic<typename T>
static Dictionary<String^, Vector<T>^>^ ReadAllVectors(
Stream^ stream
)
static member ReadAllVectors :
stream : Stream -> Dictionary<string, Vector<'T>>
Parameters
- stream
- Type: System.IOStream
The stream to read from.
Type Parameters
- T
Return Value
Type:
DictionaryString,
VectorTA dictionary containing all the vectors
read from the stream using their name as the key.
Reference