com.g2forge.alexandria.adt.collection.strategy.ICollectionStrategy 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.collection.strategy;
import com.g2forge.alexandria.adt.collection.collector.ICollectionBuilder;
public interface ICollectionStrategy {
public ICollectionBuilder builder();
public Iterable iterable(C collection);
}