com.g2forge.alexandria.adt.map.IMapCollector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-collection Show documentation
Show all versions of ax-collection Show documentation
Extended collection API, which will evolve to encompass all ADTs.
package com.g2forge.alexandria.adt.map;
public interface IMapCollector {
public IMapCollector add(K key, V value);
}