1// Signature format: 4.0 2package androidx.arch.core.util { 3 4 public interface Function<I, O> { 5 method public O! apply(I!); 6 } 7 8} 9 10