activeVertices<V> function
Implementation
Map<V, VertexSnapshot<V>> activeVertices<V>(
Map<V, VertexSnapshot<V>> vertices) =>
vertices.entries.fold(
{},
(a, c) =>
{...a, if (c.value.state != SnapshotState.removed) c.key: c.value});