hasImportAliasDeclaration

abstract override fun hasImportAliasDeclaration(predicate: (KoImportAliasDeclaration) -> Boolean?): Boolean

Deprecated

Will be removed in version 0.19.0

Replace with

sourceDeclaration?.hasImportAliasDeclaration()

Whether declaration has a specified import alias declaration.

Return

true if the declaration has the specified import alias declaration (or any import alias declaration if predicate is null), false otherwise.

Parameters

predicate

The predicate function used to determine if an import alias declaration satisfies a condition.