![]() |
Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
|
Classes | |
| class | ChunkedList |
| A chunked list is a linked list of chunks of objects of type T . More... | |
| class | ChunkedListDebugView |
| Displays a ChunkedList<T> is a debugger view. | |
| class | ChunkedListExtensions |
| ChunkedList extensions. More... | |
| class | ChunkNode |
| Node referencing a chunk in a ChunkedList<T> More... | |
| class | ChunkNodeDebugView |
| Displays a ChunkNode<T> is a debugger view. | |
Functions | |
| delegate bool | ForEachChunkCallback< T > (T[] Chunk, int Offset, int Count) |
| Callback method for the ForEachChunk method. More... | |
| delegate Task< bool > | ForEachChunkAsyncCallback< T > (T[] Chunk, int Offset, int Count) |
| Asynchronous callback method for the ForEachChunkAsync method. More... | |
| delegate Task< bool > | PredicateAsync< in T > (T Arg) |
| Asynchronous predicate function with one argument. More... | |
| delegate bool | UpdateCallback< T > (ref T Value, out bool Keep) |
| Delegate for callback methods that update the elements of a ChunkedList<T>. More... | |
| delegate Task< bool > Waher.Runtime.Collections.ForEachChunkAsyncCallback< T > | ( | T[] | Chunk, |
| int | Offset, | ||
| int | Count | ||
| ) |
Asynchronous callback method for the ForEachChunkAsync method.
| T | Element type. |
| Chunk | Chunk being iterated. |
| Offset | Offset into chunk where elements begin. |
| Count | Number of items in chunk. |
| delegate bool Waher.Runtime.Collections.ForEachChunkCallback< T > | ( | T[] | Chunk, |
| int | Offset, | ||
| int | Count | ||
| ) |
Callback method for the ForEachChunk method.
| T | Element type. |
| Chunk | Chunk being iterated. |
| Offset | Offset into chunk where elements begin. |
| Count | Number of items in chunk. |
| delegate Task< bool > Waher.Runtime.Collections.PredicateAsync< in T > | ( | T | Arg | ) |
Asynchronous predicate function with one argument.
| T | Argument type. |
| Arg | Argument. |
| delegate bool Waher.Runtime.Collections.UpdateCallback< T > | ( | ref T | Value, |
| out bool | Keep | ||
| ) |
Delegate for callback methods that update the elements of a ChunkedList<T>.
| T | Type of element. |
| Value | Value that can be updated. |
| Keep | If the value should be kept. |