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

com.launchdarkly.sdk.Function Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package com.launchdarkly.sdk;

/**
 * Equivalent to {@code java.util.function.Function}, which we can't use because this package must
 * run in Android without Java 8 support.
 *
 * @param  input parameter type
 * @param  return type
 */
interface Function {
  public B apply(A a);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy