Provider

Describes a provider of values which, when requested by a name will yield the corresponding value

Members

Functions

provide
Optional!(string) provide(string name)

Provides us the value that maps to the given name

provideImpl
bool provideImpl(string n, string v_out)

The implementation method for a provider. This must return true when an entry by the name of n is found and then set its associated value via v_out. Otherwise, false must be returned.

Meta