All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmMain.com.apollographql.apollo.api.internal.Function Maven / Gradle / Ivy

package com.apollographql.apollo.api.internal;

import org.jetbrains.annotations.NotNull;

public interface Function {
  /**
   * Apply some calculation to the input value and return some other value.
   *
   * @param t the input value
   * @return the output value
   */
  @NotNull
  R apply(@NotNull T t);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy