toggle menu
metis-lang
jvm
switch theme
search in API
metis-lang
/
io.github.seggan.metis.util
/
MutableLazy
Mutable
Lazy
class
MutableLazy
<
T
>
(
val
initializer
:
(
)
->
T
)
:
ReadWriteProperty
<
Any
?
,
T
>
A lazy property which can be mutated.
Parameters
T
The type of the property.
Members
Constructors
Mutable
Lazy
Link copied to clipboard
constructor
(
initializer
:
(
)
->
T
)
Properties
initializer
Link copied to clipboard
val
initializer
:
(
)
->
T
The initializer for the property.
Functions
get
Value
Link copied to clipboard
open
operator override
fun
getValue
(
thisRef
:
Any
?
,
property
:
KProperty
<
*
>
)
:
T
set
Value
Link copied to clipboard
open
operator override
fun
setValue
(
thisRef
:
Any
?
,
property
:
KProperty
<
*
>
,
value
:
T
)