has All Secondary Constructors
abstract fun hasAllSecondaryConstructors(predicate: (KoSecondaryConstructorDeclaration) -> Boolean): Boolean
Determines whether the declaration has all secondary constructors that satisfy the provided predicate.
Note that if the secondary constructors contains no elements, the function returns true
because there are no elements in it that do not match the predicate.
Return
true
if all secondary constructor declarations satisfy the predicate, false
otherwise.
Parameters
predicate
A function that defines the condition to be met by secondary constructor declarations.