Result

data class Result<E : DocsContentExtractor>(val name: String, val moduleName: String?, val extractor: () -> E)

Represents a scanned documentation resource.

Parameters

E

the type of DocsContentExtractor for the resource

Constructors

Link copied to clipboard
constructor(name: String, moduleName: String?, extractor: () -> E)

Properties

Link copied to clipboard
val extractor: () -> E

a supplier of a corresponding content extractor that can process the resource

Link copied to clipboard

Whether this resource is part of a Quarkdown module of a user library.

Link copied to clipboard

the name of the Quarkdown module containing the resource (e.g., "String"), if part of a module

Link copied to clipboard

the name of the resource (e.g., "lowercase")