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

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

Link copied to clipboard

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