it.unibo.alchemist.util.LazyMutable.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alchemist-cognitive-agents Show documentation
Show all versions of alchemist-cognitive-agents Show documentation
Abstraction for group of pedestrians capable of influence each other emotionally.
/*
* Copyright (C) 2010-2023, Danilo Pianini and contributors
* listed, for each module, in the respective subproject's build.gradle.kts file.
*
* This file is part of Alchemist, and is distributed under the terms of the
* GNU General Public License, with a linking exception,
* as described in the file LICENSE in the Alchemist distribution's top directory.
*/
package it.unibo.alchemist.util
import kotlin.properties.ReadWriteProperty
import kotlin.reflect.KProperty
/**
* A delegate allowing to lazily initialise a non-null mutable variable (= var).
*/
class LazyMutable(private val initializer: () -> T) : ReadWriteProperty {
private var value: T? = null
override fun getValue(thisRef: Any?, property: KProperty<*>): T {
if (value == null) {
value = initializer()
}
return checkNotNull(value)
}
override fun setValue(thisRef: Any?, property: KProperty<*>, value: T) {
this.value = value
}
}
/**
* Creates an instance of [LazyMutable] with the given [initializer].
*/
fun lazyMutable(initializer: () -> T): LazyMutable =
LazyMutable(initializer)