div
inline operator fun <Root, Intermediate : Any, Value> KProperty1<Root, Intermediate?>.div(next: KProperty1<Intermediate, Value>): PropertyPath<Root, Value>
Creates a nested property path using /.
Nullable intermediate properties are accepted and normalized to their non-null value type for matching.
inline operator fun <Root, Intermediate : Any, Value> PropertyPath<Root, Intermediate?>.div(next: KProperty1<Intermediate, Value>): PropertyPath<Root, Value>
Appends next to this property path.
Nullable intermediate properties are accepted and normalized to their non-null value type for matching.