withoutPath

fun <T : KoPathProvider> List<T>.withoutPath(path: String, vararg paths: String, absolutePath: Boolean = false): List<T>

List containing declarations without path.

Return

A list containing declarations that don't reside in any of the specified paths.

Parameters

path

The path to exclude.

paths

The paths to exclude.

absolutePath

Determines whether the paths should be treated as absolute paths. By default, false.


fun <T : KoPathProvider> List<T>.withoutPath(paths: Collection<String>, absolutePath: Boolean = false): List<T>

List containing declarations without path.

Return

A list containing declarations that don't reside in any of the specified paths.

Parameters

paths

The paths to exclude.

absolutePath

Determines whether the paths should be treated as absolute paths. By default, false.