001package org.reactivestreams.tck.support;
002
003public interface Function<In, Out> {
004  public Out apply(In in) throws Throwable;
005}