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

helpers.MultiMaps.kt Maven / Gradle / Ivy

The newest version!
package com.hexagonkt.helpers

fun  multiMapOf(vararg pairs: Pair>): MultiMap =
    MultiMap(pairs.toMap())

fun  Map>.toMultiMap(): MultiMap =
    MultiMap(this)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy