org.apache.tinkerpop.gremlin.ogm.extensions.Maps.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-gremlin-ogm Show documentation
Show all versions of kotlin-gremlin-ogm Show documentation
The Object Graph Mapping Library for Kotlin and Gremlin
package org.apache.tinkerpop.gremlin.ogm.extensions
internal fun Map.filterNulls(): Map =
entries
.filter { it.key != null && it.value != null }
.map { it.key!! to it.value!! }
.associate { it }
internal fun Map.filterNullValues(): Map =
filter { it.value != null }
.mapValues { it.value!! }
© 2015 - 2024 Weber Informatics LLC | Privacy Policy