All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pascal.taie.util.collection.Lists Maven / Gradle / Ivy

The newest version!
/*
 * Tai-e: A Static Analysis Framework for Java
 *
 * Copyright (C) 2022 Tian Tan 
 * Copyright (C) 2022 Yue Li 
 *
 * This file is part of Tai-e.
 *
 * Tai-e is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation, either version 3
 * of the License, or (at your option) any later version.
 *
 * Tai-e is distributed in the hope that it will be useful,but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
 * Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with Tai-e. If not, see .
 */

package pascal.taie.util.collection;

import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.stream.StreamSupport;

/**
 * Utility methods for {@link List}.
 */
public final class Lists {

    private Lists() {
    }

    /**
     * Applies a mapper function on a given collection and returns
     * the results as a list. The resulting list is unmodifiable.
     */
    public static  List map(Collection c,
                                     Function mapper) {
        return c.isEmpty() ? List.of() : c.stream().map(mapper).toList();
    }

    /**
     * Tests the elements in a given collection and returns a list of elements
     * that can pass the test. The resulting list is unmodifiable.
     */
    public static  List filter(Collection c,
                                     Predicate predicate) {
        List result = c.stream().filter(predicate).toList();
        return result.isEmpty() ? List.of() : result;
    }

    /**
     * Converts an iterable object to a list.
     */
    public static  List asList(Iterable iterable) {
        return StreamSupport.stream(iterable.spliterator(), false).toList();
    }

    /**
     * Concatenates two lists and removes duplicate items in the resulting list.
     */
    public static  List concatDistinct(
            List list1, List list2) {
        Set set = new LinkedHashSet<>(list1);
        set.addAll(list2);
        return List.copyOf(set);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy