package org.eclipse.collections.api.map;
import org.eclipse.collections.api.bag.Bag;
import org.eclipse.collections.api.bag.primitive.BooleanBag;
import org.eclipse.collections.api.bag.primitive.ByteBag;
import org.eclipse.collections.api.bag.primitive.CharBag;
import org.eclipse.collections.api.bag.primitive.DoubleBag;
import org.eclipse.collections.api.bag.primitive.FloatBag;
import org.eclipse.collections.api.bag.primitive.IntBag;
import org.eclipse.collections.api.bag.primitive.LongBag;
import org.eclipse.collections.api.bag.primitive.ShortBag;
import org.eclipse.collections.api.block.function.Function;
import org.eclipse.collections.api.block.function.Function2;
import org.eclipse.collections.api.block.function.primitive.BooleanFunction;
import org.eclipse.collections.api.block.function.primitive.ByteFunction;
import org.eclipse.collections.api.block.function.primitive.CharFunction;
import org.eclipse.collections.api.block.function.primitive.DoubleFunction;
import org.eclipse.collections.api.block.function.primitive.FloatFunction;
import org.eclipse.collections.api.block.function.primitive.IntFunction;
import org.eclipse.collections.api.block.function.primitive.LongFunction;
import org.eclipse.collections.api.block.function.primitive.ShortFunction;
import org.eclipse.collections.api.block.predicate.Predicate;
import org.eclipse.collections.api.block.predicate.Predicate2;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.multimap.bag.BagMultimap;
import org.eclipse.collections.api.multimap.set.UnsortedSetMultimap;
import org.eclipse.collections.api.ordered.OrderedIterable;
import org.eclipse.collections.api.partition.bag.PartitionBag;
import org.eclipse.collections.api.set.UnsortedSetIterable;
import org.eclipse.collections.api.tuple.Pair;
public interface UnsortedMapIterable<K, V>
extends MapIterable<K, V>
{
@Override
UnsortedSetMultimap<V, K> flip();
@Override
UnsortedMapIterable<V, K> flipUniqueValues();
@Override
UnsortedMapIterable<K, V> tap(Procedure<? super V> procedure);
@Override
UnsortedMapIterable<K, V> select(Predicate2<? super K, ? super V> predicate);
@Override
UnsortedMapIterable<K, V> reject(Predicate2<? super K, ? super V> predicate);
@Override
<R> UnsortedMapIterable<K, R> collectValues(Function2<? super K, ? super V, ? extends R> function);
@Override
<K2, V2> UnsortedMapIterable<K2, V2> collect(Function2<? super K, ? super V, Pair<K2, V2>> function);
@Override
Bag<V> select(Predicate<? super V> predicate);
@Override
<P> Bag<V> selectWith(Predicate2<? super V, ? super P> predicate, P parameter);
@Override
Bag<V> reject(Predicate<? super V> predicate);
@Override
<P> Bag<V> rejectWith(Predicate2<? super V, ? super P> predicate, P parameter);
@Override
PartitionBag<V> partition(Predicate<? super V> predicate);
@Override
<P> PartitionBag<V> partitionWith(Predicate2<? super V, ? super P> predicate, P parameter);
@Override
<S> Bag<S> selectInstancesOf(Class<S> clazz);
@Override
<V1> Bag<V1> collect(Function<? super V, ? extends V1> function);
@Override
BooleanBag collectBoolean(BooleanFunction<? super V> booleanFunction);
@Override
ByteBag collectByte(ByteFunction<? super V> byteFunction);
@Override
CharBag collectChar(CharFunction<? super V> charFunction);
@Override
DoubleBag collectDouble(DoubleFunction<? super V> doubleFunction);
@Override
FloatBag collectFloat(FloatFunction<? super V> floatFunction);
@Override
IntBag collectInt(IntFunction<? super V> intFunction);
@Override
LongBag collectLong(LongFunction<? super V> longFunction);
@Override
ShortBag collectShort(ShortFunction<? super V> shortFunction);
@Override
<P, V1> Bag<V1> collectWith(Function2<? super V, ? super P, ? extends V1> function, P parameter);
@Override
<V1> Bag<V1> collectIf(Predicate<? super V> predicate, Function<? super V, ? extends V1> function);
@Override
<V1> Bag<V1> flatCollect(Function<? super V, ? extends Iterable<V1>> function);
@Override
default <P, V1> Bag<V1> flatCollectWith(Function2<? super V, ? super P, ? extends Iterable<V1>> function, P parameter)
{
return this.flatCollect(each -> function.apply(each, parameter));
}
@Override
<V1> BagMultimap<V1, V> groupBy(Function<? super V, ? extends V1> function);
@Override
<V1> BagMultimap<V1, V> groupByEach(Function<? super V, ? extends Iterable<V1>> function);
@Override
<V1> UnsortedMapIterable<V1, V> groupByUniqueKey(Function<? super V, ? extends V1> function);
@Override
@Deprecated
<S> Bag<Pair<V, S>> zip(Iterable<S> that);
@Override
@Deprecated
UnsortedSetIterable<Pair<V, Integer>> zipWithIndex();
@Override
ImmutableMap<K, V> toImmutable();
}