Click or drag to resize
Accord.NET (logo)

NpzDictionary Class

Lazily-loaded collection of arrays from a compressed .npz archive.
Inheritance Hierarchy
SystemObject
  Accord.IONpzDictionaryArray
    Accord.IONpzDictionary

Namespace:  Accord.IO
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public class NpzDictionary : NpzDictionary<Array>
Request Example View Source

The NpzDictionary type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyCount
Gets the number of elements in the collection.
(Inherited from NpzDictionaryT.)
Public propertyIsReadOnly
Gets a value indicating whether the ICollectionT is read-only.
(Inherited from NpzDictionaryT.)
Public propertyIsSynchronized
Gets a value indicating whether the access to collection is synchronized (thread-safe).
(Inherited from NpzDictionaryT.)
Public propertyItem
Gets the array stored under the given key.
(Inherited from NpzDictionaryT.)
Public propertyKeys
Gets an enumerable collection that contains the keys in the read-only dictionary.
(Inherited from NpzDictionaryT.)
Public propertySyncRoot
Gets an object that can be used to synchronize access to the collection.
(Inherited from NpzDictionaryT.)
Public propertyValues
Gets an enumerable collection that contains the values in the read-only dictionary.
(Inherited from NpzDictionaryT.)
Top
Methods
  NameDescription
Public methodAdd
Throws a ReadOnlyException.
(Inherited from NpzDictionaryT.)
Public methodClear
Throws a ReadOnlyException.
(Inherited from NpzDictionaryT.)
Public methodContains
Determines whether the ICollectionT contains a specific value.
(Inherited from NpzDictionaryT.)
Public methodContainsKey
Determines whether the read-only dictionary contains an element that has the specified key.
(Inherited from NpzDictionaryT.)
Public methodCopyTo(Array, Int32)
Copies the elements of the ICollectionT to an Array, starting at a particular Array index.
(Inherited from NpzDictionaryT.)
Public methodCopyTo(T, Int32)
Copies the elements of the ICollectionT to an Array, starting at a particular Array index.
(Inherited from NpzDictionaryT.)
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from NpzDictionaryT.)
Protected methodDispose(Boolean)
Releases unmanaged and - optionally - managed resources.
(Inherited from NpzDictionaryT.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
(Inherited from NpzDictionaryT.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodLoad
Loads the array from the specified stream.
(Overrides NpzDictionaryTLoad(Stream).)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRemove
Throws a ReadOnlyException.
(Inherited from NpzDictionaryT.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodTryGetValue
Gets the value that is associated with the specified key.
(Inherited from NpzDictionaryT.)
Top
Extension Methods
  NameDescription
Public Extension MethodHasMethod
Checks whether an object implements a method with the given name.
(Defined by ExtensionMethods.)
Public Extension MethodIsEqual
Compares two objects for equality, performing an elementwise comparison if the elements are vectors or matrices.
(Defined by Matrix.)
Public Extension MethodTo(Type)Overloaded.
Converts an object into another type, irrespective of whether the conversion can be done at compile time or not. This can be used to convert generic types to numeric types during runtime.
(Defined by ExtensionMethods.)
Public Extension MethodToTOverloaded.
Converts an object into another type, irrespective of whether the conversion can be done at compile time or not. This can be used to convert generic types to numeric types during runtime.
(Defined by ExtensionMethods.)
Top
See Also