Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RemoveFirstFunction (0.26 sec)

  1. guava-tests/test/com/google/common/collect/ListsTest.java

      private static final Collection<Integer> SOME_COLLECTION = asList(0, 1, 1);
    
      private static final Iterable<Integer> SOME_ITERABLE = new SomeIterable();
    
      private static final class RemoveFirstFunction implements Function<String, String>, Serializable {
        @Override
        public String apply(String from) {
          return (from.length() == 0) ? from : from.substring(1);
        }
      }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 35.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ListsTest.java

      private static final Collection<Integer> SOME_COLLECTION = asList(0, 1, 1);
    
      private static final Iterable<Integer> SOME_ITERABLE = new SomeIterable();
    
      private static final class RemoveFirstFunction implements Function<String, String>, Serializable {
        @Override
        public String apply(String from) {
          return (from.length() == 0) ? from : from.substring(1);
        }
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 35.2K bytes
    - Viewed (0)
Back to top