TypeDescriber

Describer that creates descriptions on the fly based on passed identity and component.

Constructors

this
this(string title, string description, string delegate(const ref IdentityType identity) @(safe) pure identityFormatter, string delegate(const ref ComponentType component) @(safe) pure componentFormatter)
this(string title, string description)
this()

Constructor with custom title and description template

Members

Aliases

describe
alias describe = Describer!(ComponentType, IdentityType).describe

Describe a component based on it's identity and itself using generic identity and type formatter in title and description templates.

Functions

describe
Optional!(const(Description!IdentityType)) describe(IdentityType identity, ComponentType component)

Describe a component based on it's identity and itself using generic identity and type formatter in title and description templates.

Meta