package org.eclipse.viatra.solver.data.map; public interface VersionedMap extends Versioned{ public V get(K key); public Cursor getAll(); public V put(K key, V value); public void putAll(Cursor cursor); public long getSize(); public DiffCursor getDiffCursor(long state); }