dev.forkhandles.data.MapDataContainer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data4k Show documentation
Show all versions of data4k Show documentation
ForkHandles data-oriented programming library
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 }
)