Automatically de-serialize MicrodataValue to simple and value types, as well as case classes.
Automatically de-serialize MicrodataValue to simple and value types, as well as case classes. E.g.:
scala> import microtesia._ import microtesia._ scala> import formats._ import formats._ scala> import scala.util.Try import scala.util.Try scala> MicrodataString("10").convertTo[Int] res0: Try[Int] = Success(10)
Implicit typeclass to enrich MicrodataValue instances with the convertTo method.