Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for init (0.09 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/MappedList.java

        public MappedList(List<V> list, Function<V, U> mapper) {
            this.list = list;
            this.mapper = mapper;
        }
    
        @Override
        public U get(int index) {
            return mapper.apply(list.get(index));
        }
    
        @Override
        public int size() {
            return list.size();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top