diff --git a/coulomb-parser.html b/coulomb-parser.html index e69f35a53..fb8b4a4b8 100644 --- a/coulomb-parser.html +++ b/coulomb-parser.html @@ -174,7 +174,7 @@

< "coulomb.units.info" *: EmptyTuple ] -// dslparser: RuntimeUnitParser = repl.MdocSession$MdocApp$$anon$1@5691e23d +// dslparser: RuntimeUnitParser = repl.MdocSession$MdocApp$$anon$1@35a5145a

Parsing can fail, and so the parse method returns an Either object. In the following code, parsing a known unit meter results in a successful Right value.

This example illustrates that unit names parse into a corresponding fully qualified diff --git a/coulomb-pureconfig.html b/coulomb-pureconfig.html index 39943e119..237c24521 100644 --- a/coulomb-pureconfig.html +++ b/coulomb-pureconfig.html @@ -221,7 +221,7 @@

< bandwidth: {value: 200, unit: "gigabyte / second"} } """) -// source: ConfigObjectSource = pureconfig.ConfigObjectSource@423bad4f +// source: ConfigObjectSource = pureconfig.ConfigObjectSource@58f7091f // this load will succeed, with automatic unit conversions val conf = source.load[Config] @@ -238,7 +238,7 @@

< bandwidth: {value: 200, unit: "gigabyte"} } """) -// bad: ConfigObjectSource = pureconfig.ConfigObjectSource@30610fd4 +// bad: ConfigObjectSource = pureconfig.ConfigObjectSource@47996ce9 // this load will fail because bandwidth units are incompatible val fail = bad.load[Config] @@ -281,7 +281,7 @@

// qsrc: ConfigObjectSource = pureconfig.ConfigObjectSource@52ab1f46 +// qsrc: ConfigObjectSource = pureconfig.ConfigObjectSource@2a436077 // loading integer value types will succeed when type matches the config qsrc.load[Quantity[Int, Mega * Byte]] @@ -331,7 +331,7 @@

// source: ConfigObjectSource = pureconfig.ConfigObjectSource@51b80607 +// source: ConfigObjectSource = pureconfig.ConfigObjectSource@126d5afc // this load will succeed, with automatic unit conversions val conf = source.load[Config]