001/***************************************************
002 * Licensed under MIT No Attribution (SPDX: MIT-0) *
003 ***************************************************/
004
005package org.reactivestreams.tck.flow.support;
006
007public interface Function<In, Out> {
008  public Out apply(In in) throws Throwable;
009}