1. Project Clover database Wed Nov 12 2025 05:07:35 UTC
  2. Package guru.mikelue.foxglove.functional

File RowIndexToValue.java

 

Code metrics

0
0
0
1
11
4
0
-
-
0
-

Classes

Class Line # Actions
RowIndexToValue 11 0 - 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

1    package guru.mikelue.foxglove.functional;
2   
3    import java.util.function.Function;
4   
5    /**
6    * This interface defines the action to convert a row index to a value.
7    *
8    * @param <T> Type of value to be provided
9    */
10    @FunctionalInterface
 
11    public interface RowIndexToValue<T> extends Function<Integer, T> {}