Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MappedList (0.14 sec)

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

    package org.apache.maven.internal.impl;
    
    import java.util.AbstractList;
    import java.util.List;
    import java.util.function.Function;
    
    public class MappedList<U, V> extends AbstractList<U> {
        private final List<V> list;
        private final Function<V, U> mapper;
    
        public MappedList(List<V> list, Function<V, U> mapper) {
            this.list = list;
            this.mapper = mapper;
        }
    
        @Override
        public U get(int index) {
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.3K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/MappedList.java

    package org.apache.maven.internal.impl;
    
    import java.util.AbstractList;
    import java.util.List;
    import java.util.function.Function;
    
    public class MappedList<U, V> extends AbstractList<U> {
        private final List<V> list;
        private final Function<V, U> mapper;
    
        public MappedList(List<V> list, Function<V, U> mapper) {
            this.list = list;
            this.mapper = mapper;
        }
    
        @Override
        public U get(int index) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 1.3K bytes
    - Viewed (0)
Back to top