Do I need the Kotlin reflect library to create cus...
# getting-started
m
Do I need the Kotlin reflect library to create custom delegates? (As the operator override requires the KProperty class)?
d
KProperty
is part of the standard library, so no. The reflection library only provides additional functionality (such as enumerating the members of a class).
m
Nice, thank you 🙂