Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for FromIterableFunction (0.4 sec)

  1. android/guava/src/com/google/common/collect/FluentIterable.java

      public final E get(int position) {
        return Iterables.get(getDelegate(), position);
      }
    
      /** Function that transforms {@code Iterable<E>} into a fluent iterable. */
      private static class FromIterableFunction<E extends @Nullable Object>
          implements Function<Iterable<E>, FluentIterable<E>> {
        @Override
        public FluentIterable<E> apply(Iterable<E> fromObject) {
          return FluentIterable.from(fromObject);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Sep 24 13:42:31 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top