diff --git a/coulomb-parser.html b/coulomb-parser.html index c4c75413..6edda7d1 100644 --- a/coulomb-parser.html +++ b/coulomb-parser.html @@ -174,7 +174,7 @@

< "coulomb.units.info" *: EmptyTuple ] -// dslparser: RuntimeUnitParser = repl.MdocSession$MdocApp$$anon$1@2c9f8ea6 +// dslparser: RuntimeUnitParser = repl.MdocSession$MdocApp$$anon$1@161f2a2a

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 afce45be..c2e537bd 100644 --- a/coulomb-pureconfig.html +++ b/coulomb-pureconfig.html @@ -221,7 +221,7 @@

< bandwidth: {value: 200, unit: "gigabyte / second"} } """) -// source: ConfigObjectSource = pureconfig.ConfigObjectSource@14f14b8 +// source: ConfigObjectSource = pureconfig.ConfigObjectSource@435ea1df // 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@18d5d93b +// bad: ConfigObjectSource = pureconfig.ConfigObjectSource@100d9c54 // this load will fail because bandwidth units are incompatible val fail = bad.load[Config] @@ -281,7 +281,7 @@

// qsrc: ConfigObjectSource = pureconfig.ConfigObjectSource@7db348b4 +// qsrc: ConfigObjectSource = pureconfig.ConfigObjectSource@760fd4f1 // 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@514876ff +// source: ConfigObjectSource = pureconfig.ConfigObjectSource@19d18d28 // this load will succeed, with automatic unit conversions val conf = source.load[Config]