package com.mikepenz.fastadapter.utils; /** * Created by Ahmed Ragab on 24/01/16. */ public interface Function<Input, Output> { Output apply(Input input); }