package fr.moresmau.jp.func; /** * Maps a value to another * @author JP Moresmau * * @param */ public interface Mapper { /** * maps the given value to a result * @param initial the initial value * @return the result */ E2 map(E1 initial); }