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

com.landawn.abacus.util.BooleanList Maven / Gradle / Ivy

/*
 * Copyright (c) 2015, Haiyang Li.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.landawn.abacus.util;

import java.security.SecureRandom;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.Random;
import java.util.Set;

import com.landawn.abacus.util.Fn.Factory;
import com.landawn.abacus.util.Try.Function;
import com.landawn.abacus.util.u.Optional;
import com.landawn.abacus.util.u.OptionalBoolean;
import com.landawn.abacus.util.u.OptionalInt;
import com.landawn.abacus.util.function.BiConsumer;
import com.landawn.abacus.util.function.BiFunction;
import com.landawn.abacus.util.function.IntFunction;
import com.landawn.abacus.util.function.Supplier;
import com.landawn.abacus.util.stream.Collector;
import com.landawn.abacus.util.stream.Stream;

/**
 * 
 * @since 0.8
 * 
 * @author Haiyang Li
 */
public final class BooleanList extends PrimitiveList {
    private static final long serialVersionUID = -1194435277403867258L;

    static final Random RAND = new SecureRandom();

    private boolean[] elementData = N.EMPTY_BOOLEAN_ARRAY;
    private int size = 0;

    public BooleanList() {
        super();
    }

    public BooleanList(int initialCapacity) {
        elementData = initialCapacity == 0 ? N.EMPTY_BOOLEAN_ARRAY : new boolean[initialCapacity];
    }

    /**
     * The specified array is used as the element array for this list without copying action.
     * 
     * @param a
     */
    public BooleanList(boolean[] a) {
        this(a, a.length);
    }

    public BooleanList(boolean[] a, int size) {
        N.checkFromIndexSize(0, size, a.length);

        this.elementData = a;
        this.size = size;
    }

    @SafeVarargs
    public static BooleanList of(final boolean... a) {
        return new BooleanList(N.nullToEmpty(a));
    }

    public static BooleanList of(final boolean[] a, final int size) {
        N.checkFromIndexSize(0, size, N.len(a));

        return new BooleanList(N.nullToEmpty(a), size);
    }

    public static BooleanList copyOf(final boolean[] a) {
        return of(N.clone(a));
    }

    public static BooleanList copyOf(final boolean[] a, final int fromIndex, final int toIndex) {
        return of(N.copyOfRange(a, fromIndex, toIndex));
    }

    public static BooleanList from(Collection c) {
        if (N.isNullOrEmpty(c)) {
            return new BooleanList();
        }

        return from(c, false);
    }

    public static BooleanList from(Collection c, boolean defaultForNull) {
        if (N.isNullOrEmpty(c)) {
            return new BooleanList();
        }

        final boolean[] a = new boolean[c.size()];
        int idx = 0;

        for (Boolean e : c) {
            a[idx++] = e == null ? defaultForNull : e;
        }

        return of(a);
    }

    public static BooleanList from(final Collection c, final int fromIndex, final int toIndex) {
        N.checkFromToIndex(fromIndex, toIndex, N.size(c));

        if (N.isNullOrEmpty(c)) {
            return new BooleanList();
        }

        return from(c, fromIndex, toIndex, false);
    }

    public static BooleanList from(final Collection c, final int fromIndex, final int toIndex, boolean defaultForNull) {
        return of(N.toBooleanArray(c, fromIndex, toIndex, defaultForNull));
    }

    public static BooleanList repeat(boolean element, final int len) {
        return of(Array.repeat(element, len));
    }

    public static BooleanList random(final int len) {
        final boolean[] a = new boolean[len];

        for (int i = 0; i < len; i++) {
            a[i] = RAND.nextBoolean();
        }

        return of(a);
    }

    /**
     * Returns the original element array without copying.
     * 
     * @return
     */
    @Override
    public boolean[] array() {
        return elementData;
    }

    public boolean get(int index) {
        rangeCheck(index);

        return elementData[index];
    }

    private void rangeCheck(int index) {
        if (index >= size) {
            throw new IndexOutOfBoundsException("Index: " + index + ", Size: " + size);
        }
    }

    /**
     * 
     * @param index
     * @param e
     * @return the old value in the specified position.
     */
    public boolean set(int index, boolean e) {
        rangeCheck(index);

        boolean oldValue = elementData[index];

        elementData[index] = e;

        return oldValue;
    }

    public void add(boolean e) {
        ensureCapacityInternal(size + 1);

        elementData[size++] = e;
    }

    public void add(int index, boolean e) {
        rangeCheckForAdd(index);

        ensureCapacityInternal(size + 1);

        int numMoved = size - index;

        if (numMoved > 0) {
            N.copy(elementData, index, elementData, index + 1, numMoved);
        }

        elementData[index] = e;

        size++;
    }

    public boolean addAll(BooleanList c) {
        if (N.isNullOrEmpty(c)) {
            return false;
        }

        int numNew = c.size();

        ensureCapacityInternal(size + numNew);

        N.copy(c.array(), 0, elementData, size, numNew);

        size += numNew;

        return true;
    }

    public boolean addAll(int index, BooleanList c) {
        rangeCheckForAdd(index);

        if (N.isNullOrEmpty(c)) {
            return false;
        }

        int numNew = c.size();

        ensureCapacityInternal(size + numNew); // Increments modCount

        int numMoved = size - index;

        if (numMoved > 0) {
            N.copy(elementData, index, elementData, index + numNew, numMoved);
        }

        N.copy(c.array(), 0, elementData, index, numNew);

        size += numNew;

        return true;
    }

    @Override
    public boolean addAll(boolean[] a) {
        return addAll(size(), a);
    }

    @Override
    public boolean addAll(int index, boolean[] a) {
        rangeCheckForAdd(index);

        if (N.isNullOrEmpty(a)) {
            return false;
        }

        int numNew = a.length;

        ensureCapacityInternal(size + numNew); // Increments modCount

        int numMoved = size - index;

        if (numMoved > 0) {
            N.copy(elementData, index, elementData, index + numNew, numMoved);
        }

        N.copy(a, 0, elementData, index, numNew);

        size += numNew;

        return true;
    }

    private void rangeCheckForAdd(int index) {
        if (index > size || index < 0) {
            throw new IndexOutOfBoundsException("Index: " + index + ", Size: " + size);
        }
    }

    /**
     * 
     * @param e
     * @return true if this list contained the specified element
     */
    public boolean remove(boolean e) {
        for (int i = 0; i < size; i++) {
            if (elementData[i] == e) {

                fastRemove(i);

                return true;
            }
        }

        return false;
    }

    /**
     * 
     * @param e
     * @return true if this list contained the specified element
     */
    public boolean removeAllOccurrences(boolean e) {
        int w = 0;

        for (int i = 0; i < size; i++) {
            if (elementData[i] != e) {
                elementData[w++] = elementData[i];
            }
        }

        int numRemoved = size - w;

        if (numRemoved > 0) {
            N.fill(elementData, w, size, false);

            size = w;
        }

        return numRemoved > 0;
    }

    private void fastRemove(int index) {
        int numMoved = size - index - 1;

        if (numMoved > 0) {
            N.copy(elementData, index + 1, elementData, index, numMoved);
        }

        elementData[--size] = false; // clear to let GC do its work
    }

    public boolean removeAll(BooleanList c) {
        if (N.isNullOrEmpty(c)) {
            return false;
        }

        return batchRemove(c, false) > 0;
    }

    @Override
    public boolean removeAll(boolean[] a) {
        if (N.isNullOrEmpty(a)) {
            return false;
        }

        return removeAll(of(a));
    }

    public  boolean removeIf(Try.BooleanPredicate p) throws E {
        final BooleanList tmp = new BooleanList(size());

        for (int i = 0; i < size; i++) {
            if (p.test(elementData[i]) == false) {
                tmp.add(elementData[i]);
            }
        }

        if (tmp.size() == this.size()) {
            return false;
        }

        N.copy(tmp.elementData, 0, this.elementData, 0, tmp.size());
        N.fill(this.elementData, tmp.size(), size, false);
        size = tmp.size;

        return true;
    }

    public boolean retainAll(BooleanList c) {
        if (N.isNullOrEmpty(c)) {
            boolean result = size() > 0;
            clear();
            return result;
        }

        return batchRemove(c, true) > 0;
    }

    public boolean retainAll(boolean[] a) {
        if (N.isNullOrEmpty(a)) {
            boolean result = size() > 0;
            clear();
            return result;
        }

        return retainAll(BooleanList.of(a));
    }

    private int batchRemove(BooleanList c, boolean complement) {
        final boolean[] elementData = this.elementData;

        int w = 0;

        if (c.size() > 3 && size() > 9) {
            final Set set = c.toSet();

            for (int i = 0; i < size; i++) {
                if (set.contains(elementData[i]) == complement) {
                    elementData[w++] = elementData[i];
                }
            }
        } else {
            for (int i = 0; i < size; i++) {
                if (c.contains(elementData[i]) == complement) {
                    elementData[w++] = elementData[i];
                }
            }
        }

        int numRemoved = size - w;

        if (numRemoved > 0) {
            N.fill(elementData, w, size, false);

            size = w;
        }

        return numRemoved;
    }

    /**
     * 
     * @param index
     * @return the deleted element
     */
    public boolean delete(int index) {
        rangeCheck(index);

        boolean oldValue = elementData[index];

        fastRemove(index);

        return oldValue;
    }

    @Override
    public void deleteRange(final int fromIndex, final int toIndex) {
        N.checkFromToIndex(fromIndex, toIndex, size());

        if (fromIndex == toIndex) {
            return;
        }

        final int newSize = size() - (toIndex - fromIndex);

        if (toIndex < size()) {
            System.arraycopy(elementData, toIndex, elementData, fromIndex, size - toIndex);
        }

        N.fill(elementData, newSize, size(), false);

        size = newSize;
    }

    @Override
    @SafeVarargs
    public final void deleteAll(int... indices) {
        final boolean[] tmp = N.deleteAll(elementData, indices);
        N.copy(tmp, 0, elementData, 0, tmp.length);
        N.fill(elementData, tmp.length, size, false);
        size = tmp.length;
    }

    public int replaceAll(boolean oldVal, boolean newVal) {
        if (size() == 0) {
            return 0;
        }

        int result = 0;

        for (int i = 0, len = size(); i < len; i++) {
            if (elementData[i] == oldVal) {
                elementData[i] = newVal;

                result++;
            }
        }

        return result;
    }

    public  void replaceAll(Try.BooleanUnaryOperator operator) throws E {
        for (int i = 0, len = size(); i < len; i++) {
            elementData[i] = operator.applyAsBoolean(elementData[i]);
        }
    }

    public  boolean replaceIf(Try.BooleanPredicate predicate, boolean newValue) throws E {
        boolean result = false;

        for (int i = 0, len = size(); i < len; i++) {
            if (predicate.test(elementData[i])) {
                elementData[i] = newValue;

                result = true;
            }
        }

        return result;
    }

    public void fill(final boolean val) {
        fill(0, size(), val);
    }

    public void fill(final int fromIndex, final int toIndex, final boolean val) {
        checkFromToIndex(fromIndex, toIndex);

        N.fill(elementData, fromIndex, toIndex, val);
    }

    public boolean contains(boolean e) {
        return indexOf(e) >= 0;
    }

    public boolean containsAll(BooleanList c) {
        if (N.isNullOrEmpty(c)) {
            return true;
        } else if (isEmpty()) {
            return false;
        }

        final boolean isThisContainer = size() >= c.size();
        final BooleanList container = isThisContainer ? this : c;
        final boolean[] iterElements = isThisContainer ? c.array() : this.array();

        if (needToSet(size(), c.size())) {
            final Set set = container.toSet();

            for (int i = 0, iterLen = isThisContainer ? c.size() : this.size(); i < iterLen; i++) {
                if (set.contains(iterElements[i]) == false) {
                    return false;
                }
            }
        } else {
            for (int i = 0, iterLen = isThisContainer ? c.size() : this.size(); i < iterLen; i++) {
                if (container.contains(iterElements[i]) == false) {
                    return false;
                }
            }
        }

        return true;
    }

    @Override
    public boolean containsAll(boolean[] a) {
        if (N.isNullOrEmpty(a)) {
            return true;
        } else if (isEmpty()) {
            return false;
        }

        return containsAll(of(a));
    }

    public boolean containsAny(BooleanList c) {
        if (this.isEmpty() || N.isNullOrEmpty(c)) {
            return false;
        }

        return !disjoint(c);
    }

    @Override
    public boolean containsAny(boolean[] a) {
        if (this.isEmpty() || N.isNullOrEmpty(a)) {
            return false;
        }

        return !disjoint(a);
    }

    public boolean disjoint(final BooleanList c) {
        if (isEmpty() || N.isNullOrEmpty(c)) {
            return true;
        }

        final boolean isThisContainer = size() >= c.size();
        final BooleanList container = isThisContainer ? this : c;
        final boolean[] iterElements = isThisContainer ? c.array() : this.array();

        if (needToSet(size(), c.size())) {
            final Set set = container.toSet();

            for (int i = 0, iterLen = isThisContainer ? c.size() : this.size(); i < iterLen; i++) {
                if (set.contains(iterElements[i])) {
                    return false;
                }
            }
        } else {
            for (int i = 0, iterLen = isThisContainer ? c.size() : this.size(); i < iterLen; i++) {
                if (container.contains(iterElements[i])) {
                    return false;
                }
            }
        }

        return true;
    }

    @Override
    public boolean disjoint(final boolean[] b) {
        if (isEmpty() || N.isNullOrEmpty(b)) {
            return true;
        }

        return disjoint(of(b));
    }

    /**
     * 
     * @param b
     * @return
     * @see IntList#intersection(IntList)
     */
    public BooleanList intersection(final BooleanList b) {
        if (N.isNullOrEmpty(b)) {
            return new BooleanList();
        }

        final Multiset bOccurrences = b.toMultiset();

        final BooleanList c = new BooleanList(N.min(9, size(), b.size()));

        for (int i = 0, len = size(); i < len; i++) {
            if (bOccurrences.getAndRemove(elementData[i]) > 0) {
                c.add(elementData[i]);
            }
        }

        return c;
    }

    public BooleanList intersection(final boolean[] a) {
        if (N.isNullOrEmpty(a)) {
            return new BooleanList();
        }

        return intersection(of(a));
    }

    /**
     * 
     * @param b
     * @return
     * @see IntList#difference(IntList)
     */
    public BooleanList difference(final BooleanList b) {
        if (N.isNullOrEmpty(b)) {
            return of(N.copyOfRange(elementData, 0, size()));
        }

        final Multiset bOccurrences = b.toMultiset();

        final BooleanList c = new BooleanList(N.min(size(), N.max(9, size() - b.size())));

        for (int i = 0, len = size(); i < len; i++) {
            if (bOccurrences.getAndRemove(elementData[i]) < 1) {
                c.add(elementData[i]);
            }
        }

        return c;
    }

    public BooleanList difference(final boolean[] a) {
        if (N.isNullOrEmpty(a)) {
            return of(N.copyOfRange(elementData, 0, size()));
        }

        return difference(of(a));
    }

    /**
     * 
     * @param b
     * @return this.difference(b).addAll(b.difference(this))
     * @see IntList#symmetricDifference(IntList)
     */
    public BooleanList symmetricDifference(final BooleanList b) {
        if (N.isNullOrEmpty(b)) {
            return this.copy();
        } else if (this.isEmpty()) {
            return b.copy();
        }

        final Multiset bOccurrences = b.toMultiset();
        final BooleanList c = new BooleanList(N.max(9, Math.abs(size() - b.size())));

        for (int i = 0, len = size(); i < len; i++) {
            if (bOccurrences.getAndRemove(elementData[i]) < 1) {
                c.add(elementData[i]);
            }
        }

        for (int i = 0, len = b.size(); i < len; i++) {
            if (bOccurrences.getAndRemove(b.elementData[i]) > 0) {
                c.add(b.elementData[i]);
            }

            if (bOccurrences.isEmpty()) {
                break;
            }
        }

        return c;
    }

    public BooleanList symmetricDifference(final boolean[] a) {
        if (N.isNullOrEmpty(a)) {
            return of(N.copyOfRange(elementData, 0, size()));
        } else if (this.isEmpty()) {
            return of(N.copyOfRange(a, 0, a.length));
        }

        return symmetricDifference(of(a));
    }

    public int occurrencesOf(final boolean objectToFind) {
        return N.occurrencesOf(elementData, objectToFind);
    }

    public int indexOf(boolean e) {
        return indexOf(0, e);
    }

    public int indexOf(final int fromIndex, boolean e) {
        checkFromToIndex(fromIndex, size);

        for (int i = fromIndex; i < size; i++) {
            if (elementData[i] == e) {
                return i;
            }
        }

        return -1;
    }

    public int lastIndexOf(boolean e) {
        return lastIndexOf(size, e);
    }

    /**
     * 
     * @param fromIndex the start index to traverse backwards from. Inclusive.
     * @param e
     * @return
     */
    public int lastIndexOf(final int fromIndex, boolean e) {
        checkFromToIndex(0, fromIndex);

        for (int i = fromIndex == size ? size - 1 : fromIndex; i >= 0; i--) {
            if (elementData[i] == e) {
                return i;
            }
        }

        return -1;
    }

    public  void forEach(Try.BooleanConsumer action) throws E {
        forEach(0, size, action);
    }

    public  void forEach(final int fromIndex, final int toIndex, Try.BooleanConsumer action) throws E {
        N.checkFromToIndex(fromIndex < toIndex ? fromIndex : (toIndex == -1 ? 0 : toIndex), fromIndex < toIndex ? toIndex : fromIndex, size);

        if (size > 0) {
            if (fromIndex <= toIndex) {
                for (int i = fromIndex; i < toIndex; i++) {
                    action.accept(elementData[i]);
                }
            } else {
                for (int i = N.min(size - 1, fromIndex); i > toIndex; i--) {
                    action.accept(elementData[i]);
                }
            }
        }
    }

    public OptionalBoolean first() {
        return size() == 0 ? OptionalBoolean.empty() : OptionalBoolean.of(elementData[0]);
    }

    public OptionalBoolean last() {
        return size() == 0 ? OptionalBoolean.empty() : OptionalBoolean.of(elementData[size() - 1]);
    }

    public  OptionalBoolean findFirst(Try.BooleanPredicate predicate) throws E {
        for (int i = 0; i < size; i++) {
            if (predicate.test(elementData[i])) {
                return OptionalBoolean.of(elementData[i]);
            }
        }

        return OptionalBoolean.empty();
    }

    public  OptionalBoolean findLast(Try.BooleanPredicate predicate) throws E {
        for (int i = size - 1; i >= 0; i--) {
            if (predicate.test(elementData[i])) {
                return OptionalBoolean.of(elementData[i]);
            }
        }

        return OptionalBoolean.empty();
    }

    public  OptionalInt findFirstIndex(Try.BooleanPredicate predicate) throws E {
        for (int i = 0; i < size; i++) {
            if (predicate.test(elementData[i])) {
                return OptionalInt.of(i);
            }
        }

        return OptionalInt.empty();
    }

    public  OptionalInt findLastIndex(Try.BooleanPredicate predicate) throws E {
        for (int i = size - 1; i >= 0; i--) {
            if (predicate.test(elementData[i])) {
                return OptionalInt.of(i);
            }
        }

        return OptionalInt.empty();
    }

    /**
     * Returns whether all elements of this List match the provided predicate.
     * 
     * @param filter
     * @return
     */
    public  boolean allMatch(Try.BooleanPredicate filter) throws E {
        return allMatch(0, size(), filter);
    }

    public  boolean allMatch(final int fromIndex, final int toIndex, Try.BooleanPredicate filter) throws E {
        checkFromToIndex(fromIndex, toIndex);

        if (size > 0) {
            for (int i = fromIndex; i < toIndex; i++) {
                if (filter.test(elementData[i]) == false) {
                    return false;
                }
            }
        }

        return true;
    }

    /**
     * Returns whether any elements of this List match the provided predicate.
     * 
     * @param filter
     * @return
     */
    public  boolean anyMatch(Try.BooleanPredicate filter) throws E {
        return anyMatch(0, size(), filter);
    }

    public  boolean anyMatch(final int fromIndex, final int toIndex, Try.BooleanPredicate filter) throws E {
        checkFromToIndex(fromIndex, toIndex);

        if (size > 0) {
            for (int i = fromIndex; i < toIndex; i++) {
                if (filter.test(elementData[i])) {
                    return true;
                }
            }
        }

        return false;
    }

    /**
     * Returns whether no elements of this List match the provided predicate.
     * 
     * @param filter
     * @return
     */
    public  boolean noneMatch(Try.BooleanPredicate filter) throws E {
        return noneMatch(0, size(), filter);
    }

    public  boolean noneMatch(final int fromIndex, final int toIndex, Try.BooleanPredicate filter) throws E {
        checkFromToIndex(fromIndex, toIndex);

        if (size > 0) {
            for (int i = fromIndex; i < toIndex; i++) {
                if (filter.test(elementData[i])) {
                    return false;
                }
            }
        }

        return true;
    }

    /**
     * 
     * @param filter
     * @return
     */
    public  int count(Try.BooleanPredicate filter) throws E {
        return count(0, size(), filter);
    }

    public  int count(final int fromIndex, final int toIndex, Try.BooleanPredicate filter) throws E {
        checkFromToIndex(fromIndex, toIndex);

        return N.count(elementData, fromIndex, toIndex, filter);
    }

    /**
     * 
     * @param filter
     * @return a new List with the elements match the provided predicate.
     */
    public  BooleanList filter(Try.BooleanPredicate filter) throws E {
        return filter(0, size(), filter);
    }

    public  BooleanList filter(final int fromIndex, final int toIndex, Try.BooleanPredicate filter) throws E {
        checkFromToIndex(fromIndex, toIndex);

        return N.filter(elementData, fromIndex, toIndex, filter);
    }

    /**
     * 
     * @param filter
     * @return a new List with the elements match the provided predicate.
     */
    public  BooleanList filter(Try.BooleanPredicate filter, int max) throws E {
        return filter(0, size(), filter, max);
    }

    public  BooleanList filter(final int fromIndex, final int toIndex, Try.BooleanPredicate filter, final int max) throws E {
        checkFromToIndex(fromIndex, toIndex);

        return N.filter(elementData, fromIndex, toIndex, filter, max);
    }

    public  BooleanList map(final Try.BooleanUnaryOperator mapper) throws E {
        return map(0, size, mapper);
    }

    public  BooleanList map(final int fromIndex, final int toIndex, final Try.BooleanUnaryOperator mapper) throws E {
        checkFromToIndex(fromIndex, toIndex);

        final BooleanList result = new BooleanList(toIndex - fromIndex);

        for (int i = fromIndex; i < toIndex; i++) {
            result.add(mapper.applyAsBoolean(elementData[i]));
        }

        return result;
    }

    public  List mapToObj(final Try.BooleanFunction mapper) throws E {
        return mapToObj(0, size, mapper);
    }

    public  List mapToObj(final int fromIndex, final int toIndex, final Try.BooleanFunction mapper) throws E {
        checkFromToIndex(fromIndex, toIndex);

        final List result = new ArrayList<>(toIndex - fromIndex);

        for (int i = fromIndex; i < toIndex; i++) {
            result.add(mapper.apply(elementData[i]));
        }

        return result;
    }

    /**
     * This is equivalent to:
     * 
     * 
     *    if (isEmpty()) {
     *        return OptionalBoolean.empty();
     *    }
     *
     *    boolean result = elementData[0];
     *
     *    for (int i = 1; i < size; i++) {
     *        result = accumulator.applyAsBoolean(result, elementData[i]);
     *    }
     *
     *    return OptionalBoolean.of(result);
     * 
     * 
* * @param accumulator * @return */ public OptionalBoolean reduce(final Try.BooleanBinaryOperator accumulator) throws E { if (isEmpty()) { return OptionalBoolean.empty(); } boolean result = elementData[0]; for (int i = 1; i < size; i++) { result = accumulator.applyAsBoolean(result, elementData[i]); } return OptionalBoolean.of(result); } /** * This is equivalent to: *
     * 
     *     if (isEmpty()) {
     *         return identity;
     *     }
     * 
     *     boolean result = identity;
     * 
     *     for (int i = 0; i < size; i++) {
     *         result = accumulator.applyAsBoolean(result, elementData[i]);
     *    }
     * 
     *     return result;
     * 
     * 
* * @param identity * @param accumulator * @return */ public boolean reduce(final boolean identity, final Try.BooleanBinaryOperator accumulator) throws E { if (isEmpty()) { return identity; } boolean result = identity; for (int i = 0; i < size; i++) { result = accumulator.applyAsBoolean(result, elementData[i]); } return result; } @Override public boolean hasDuplicates() { if (size < 2) { return false; } else if (size == 2) { return elementData[0] == elementData[1]; } else { return true; } } @Override public BooleanList distinct(final int fromIndex, final int toIndex) { checkFromToIndex(fromIndex, toIndex); if (toIndex - fromIndex > 1) { return of(N.distinct(elementData, fromIndex, toIndex)); } else { return of(N.copyOfRange(elementData, fromIndex, toIndex)); } } @Override public void sort() { if (size <= 1) { return; } final int[] count = new int[2]; for (int i = 0; i < size; i++) { count[elementData[i] == false ? 0 : 1]++; } if (count[0] > 0) { N.fill(elementData, 0, count[0], false); } if (count[1] > 0) { N.fill(elementData, count[0], count[0] + count[1], true); } } public void reverseSort() { if (size > 1) { sort(); reverse(); } } @Override public void reverse() { if (size > 1) { N.reverse(elementData, 0, size); } } @Override public void reverse(final int fromIndex, final int toIndex) { checkFromToIndex(fromIndex, toIndex); if (toIndex - fromIndex > 1) { N.reverse(elementData, fromIndex, toIndex); } } @Override public void rotate(int distance) { if (size > 1) { N.rotate(elementData, distance); } } @Override public void shuffle() { if (size() > 1) { N.shuffle(elementData); } } @Override public void shuffle(final Random rnd) { if (size() > 1) { N.shuffle(elementData, rnd); } } @Override public void swap(int i, int j) { rangeCheck(i); rangeCheck(j); set(i, set(j, elementData[i])); } @Override public BooleanList copy() { return new BooleanList(N.copyOfRange(elementData, 0, size)); } @Override public BooleanList copy(final int fromIndex, final int toIndex) { checkFromToIndex(fromIndex, toIndex); return new BooleanList(N.copyOfRange(elementData, fromIndex, toIndex)); } /** * @param from * @param to * @param step * * @see N#copyOfRange(int[], int, int, int) */ @Override public BooleanList copy(final int from, final int to, final int step) { checkFromToIndex(from < to ? from : (to == -1 ? 0 : to), from < to ? to : from); return new BooleanList(N.copyOfRange(elementData, from, to, step)); } @Override public List split(final int fromIndex, final int toIndex, final int size) { checkFromToIndex(fromIndex, toIndex); final List list = N.split(elementData, fromIndex, toIndex, size); @SuppressWarnings("rawtypes") final List result = (List) list; for (int i = 0, len = list.size(); i < len; i++) { result.set(i, of(list.get(i))); } return result; } // @Override // public List split(int fromIndex, int toIndex, BooleanPredicate predicate) { // checkIndex(fromIndex, toIndex); // // final List result = new ArrayList<>(); // BooleanList piece = null; // // for (int i = fromIndex; i < toIndex;) { // if (piece == null) { // piece = BooleanList.of(N.EMPTY_BOOLEAN_ARRAY); // } // // if (predicate.test(elementData[i])) { // piece.add(elementData[i]); // i++; // } else { // result.add(piece); // piece = null; // } // } // // if (piece != null) { // result.add(piece); // } // // return result; // } @Override public String join(int fromIndex, int toIndex, char delimiter) { checkFromToIndex(fromIndex, toIndex); return StringUtil.join(elementData, fromIndex, toIndex, delimiter); } @Override public String join(int fromIndex, int toIndex, String delimiter) { checkFromToIndex(fromIndex, toIndex); return StringUtil.join(elementData, fromIndex, toIndex, delimiter); } @Override public BooleanList trimToSize() { if (elementData.length > size) { elementData = N.copyOfRange(elementData, 0, size); } return this; } @Override public void clear() { if (size > 0) { N.fill(elementData, 0, size, false); } size = 0; } @Override public boolean isEmpty() { return size == 0; } @Override public int size() { return size; } public List boxed() { return boxed(0, size); } public List boxed(int fromIndex, int toIndex) { checkFromToIndex(fromIndex, toIndex); final List res = new ArrayList<>(toIndex - fromIndex); for (int i = fromIndex; i < toIndex; i++) { res.add(elementData[i]); } return res; } @Override public boolean[] toArray() { return N.copyOfRange(elementData, 0, size); } @Override public > C toCollection(final int fromIndex, final int toIndex, final IntFunction supplier) { checkFromToIndex(fromIndex, toIndex); final C c = supplier.apply(toIndex - fromIndex); for (int i = fromIndex; i < toIndex; i++) { c.add(elementData[i]); } return c; } @Override public Multiset toMultiset(final int fromIndex, final int toIndex, final IntFunction> supplier) { checkFromToIndex(fromIndex, toIndex); final Multiset multiset = supplier.apply(toIndex - fromIndex); for (int i = fromIndex; i < toIndex; i++) { multiset.add(elementData[i]); } return multiset; } public Map toMap(Try.BooleanFunction keyMapper, Try.BooleanFunction valueMapper) throws E, E2 { return toMap(keyMapper, valueMapper, Factory. ofMap()); } public , E extends Exception, E2 extends Exception> M toMap(Try.BooleanFunction keyMapper, Try.BooleanFunction valueMapper, IntFunction mapFactory) throws E, E2 { final Try.BinaryOperator mergeFunction = Fn.throwingMerger(); return toMap(keyMapper, valueMapper, mergeFunction, mapFactory); } public Map toMap(Try.BooleanFunction keyMapper, Try.BooleanFunction valueMapper, Try.BinaryOperator mergeFunction) throws E, E2, E3 { return toMap(keyMapper, valueMapper, mergeFunction, Factory. ofMap()); } public , E extends Exception, E2 extends Exception, E3 extends Exception> M toMap(Try.BooleanFunction keyMapper, Try.BooleanFunction valueMapper, Try.BinaryOperator mergeFunction, IntFunction mapFactory) throws E, E2, E3 { final M result = mapFactory.apply(size); for (int i = 0; i < size; i++) { Maps.merge(result, keyMapper.apply(elementData[i]), valueMapper.apply(elementData[i]), mergeFunction); } return result; } public Map toMap(Try.BooleanFunction keyMapper, Collector downstream) throws E { return toMap(keyMapper, downstream, Factory. ofMap()); } public , E extends Exception> M toMap(final Try.BooleanFunction keyMapper, final Collector downstream, final IntFunction mapFactory) throws E { final M result = mapFactory.apply(size); final Supplier downstreamSupplier = downstream.supplier(); final BiConsumer downstreamAccumulator = downstream.accumulator(); final Map intermediate = (Map) result; K key = null; A v = null; for (int i = 0; i < size; i++) { key = N.checkArgNotNull(keyMapper.apply(elementData[i]), "element cannot be mapped to a null key"); if ((v = intermediate.get(key)) == null) { if ((v = downstreamSupplier.get()) != null) { intermediate.put(key, v); } } downstreamAccumulator.accept(v, elementData[i]); } final BiFunction function = new BiFunction() { @Override public A apply(K k, A v) { return (A) downstream.finisher().apply(v); } }; Maps.replaceAll(intermediate, function); return result; } public BooleanIterator iterator() { if (isEmpty()) { return BooleanIterator.EMPTY; } return BooleanIterator.of(elementData, 0, size); } public Stream stream() { return Stream.of(elementData, 0, size()); } public Stream stream(final int fromIndex, final int toIndex) { checkFromToIndex(fromIndex, toIndex); return Stream.of(elementData, fromIndex, toIndex); } @Override public R apply(Try.Function func) throws E { return func.apply(this); } @Override public Optional applyIfNotEmpty(Function func) throws E { return isEmpty() ? Optional. empty() : Optional.ofNullable(func.apply(this)); } @Override public void accept(Try.Consumer action) throws E { action.accept(this); } @Override public void acceptIfNotEmpty(Try.Consumer action) throws E { if (size > 0) { action.accept(this); } } @Override public int hashCode() { return N.hashCode(elementData, 0, size); } @Override public boolean equals(Object obj) { if (obj == this) { return true; } if (obj instanceof BooleanList) { final BooleanList other = (BooleanList) obj; return this.size == other.size && N.equals(this.elementData, 0, other.elementData, 0, this.size); } return false; } @Override public String toString() { return size == 0 ? "[]" : N.toString(elementData, 0, size); } private void ensureCapacityInternal(int minCapacity) { if (elementData == N.EMPTY_BOOLEAN_ARRAY) { minCapacity = Math.max(DEFAULT_CAPACITY, minCapacity); } ensureExplicitCapacity(minCapacity); } private void ensureExplicitCapacity(int minCapacity) { if (minCapacity - elementData.length > 0) { grow(minCapacity); } } private void grow(int minCapacity) { int oldCapacity = elementData.length; int newCapacity = oldCapacity + (oldCapacity >> 1); if (newCapacity - minCapacity < 0) { newCapacity = minCapacity; } if (newCapacity - MAX_ARRAY_SIZE > 0) { newCapacity = hugeCapacity(minCapacity); } elementData = Arrays.copyOf(elementData, newCapacity); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy