Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for FunctionComposition (0.06 sec)

  1. guava/src/com/google/common/base/Functions.java

        return new FunctionComposition<>(g, f);
      }
    
      private static final class FunctionComposition<
              A extends @Nullable Object, B extends @Nullable Object, C extends @Nullable Object>
          implements Function<A, C>, Serializable {
        private final Function<B, C> g;
        private final Function<A, ? extends B> f;
    
        FunctionComposition(Function<B, C> g, Function<A, ? extends B> f) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 15.4K bytes
    - Viewed (0)
Back to top