derivedNonEmptyStringConfigWriter

object derivedNonEmptyStringConfigWriter extends ConfigWriter[NonEmptyString]
trait ConfigWriter[NonEmptyString]
class Object
trait Matchable
class Any

Value members

Concrete methods

inline override def to(a: NonEmptyString): ConfigValue
Definition Classes
ConfigWriter

Inherited methods

def contramap[B](f: B => NonEmptyString): ConfigWriter[B]

Applies a function to values before passing them to this writer.

Applies a function to values before passing them to this writer.

Type parameters:
B

the input type of the function

Value parameters:
f

the function to apply to input values

Returns:

a ConfigWriter that writes the results of this writer when the input values are mapped using f.

Inherited from:
ConfigWriter
def mapConfig(f: ConfigValue => ConfigValue): ConfigWriter[NonEmptyString]

Maps a function over the results of this writer.

Maps a function over the results of this writer.

Value parameters:
f

the function to map over this writer

Returns:

a ConfigWriter returning the results of this writer mapped by f.

Inherited from:
ConfigWriter