VariantConfig.set

Sets a config value.

  1. void set(string key, T value)
    struct VariantConfig
    @trusted
    void
    set
    (
    T
    )
    (
    const string key
    ,
    const T value
    )
  2. void set(string group, string key, T value)

Parameters

key string

Name of the key to set. Can be in the group.key form.

value T

The value to be set to.

Meta