Class OperatorToMultimap<T,K,V>

    • Constructor Detail

      • OperatorToMultimap

        public OperatorToMultimap(Func1<? super T,? extends K> keySelector,
                                  Func1<? super T,? extends V> valueSelector)
        ToMultimap with key selector, custom value selector, default HashMap factory and default ArrayList collection factory.
      • OperatorToMultimap

        public OperatorToMultimap(Func1<? super T,? extends K> keySelector,
                                  Func1<? super T,? extends V> valueSelector,
                                  Func0<? extends Map<K,Collection<V>>> mapFactory)
        ToMultimap with key selector, custom value selector, custom Map factory and default ArrayList collection factory.
      • OperatorToMultimap

        public OperatorToMultimap(Func1<? super T,? extends K> keySelector,
                                  Func1<? super T,? extends V> valueSelector,
                                  Func0<? extends Map<K,Collection<V>>> mapFactory,
                                  Func1<? super K,? extends Collection<V>> collectionFactory)
        ToMultimap with key selector, custom value selector, custom Map factory and custom collection factory.