Home
last modified time | relevance | path

Searched refs:fillChildren (Results 1 – 1 of 1) sorted by relevance

/external/dokka/core/src/main/kotlin/Model/
DContent.kt38 class LazyContentBlock(private val fillChildren: (ContentBlock) -> Unit) : ContentBlock() { constant in org.jetbrains.dokka.LazyContentBlock
44 fillChildren(this)
50 … return other is LazyContentBlock && other.fillChildren == fillChildren && super.equals(other) in equals()
54 return super.hashCode() + 31 * fillChildren.hashCode() in hashCode()