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

dev.forkhandles.data.MapDataContainer.kt Maven / Gradle / Ivy

The newest version!
package dev.forkhandles.data

/**
 * Map-based implementation of the DataContainer
 */
open class MapDataContainer(input: MutableMap = mutableMapOf()) :
    DataContainer>(input, { content, it -> content.containsKey(it) },
        { content, it -> content[it] },
        { map, name, value -> map[name] = value }
    )




© 2015 - 2024 Weber Informatics LLC | Privacy Policy