Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for cellFunction (0.24 sec)

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

        @Override
        public Map<R, V2> column(@ParametricNullness C columnKey) {
          return Maps.transformValues(fromTable.column(columnKey), function);
        }
    
        Function<Cell<R, C, V1>, Cell<R, C, V2>> cellFunction() {
          return new Function<Cell<R, C, V1>, Cell<R, C, V2>>() {
            @Override
            public Cell<R, C, V2> apply(Cell<R, C, V1> cell) {
              return immutableCell(
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 04 22:45:41 GMT 2024
    - 26.1K bytes
    - Viewed (0)
Back to top