Apply f to values retrieved by this Get. Prefer tmap when possible because it will allow for better diagnostics when checking queries. Note that null values will not be transformed, so you do not need to (nor can you) handle this case.
Apply f to values retrieved by this Get. Prefer tmap when possible because it will allow for better diagnostics when checking queries. Note that null values will not be transformed, so you do not need to (nor can you) handle this case.
final def tmap[B](f: A => B)(implicit ev: TypeName[B]): Get[B]
Equivalent to map, but accumulates the destination type in the type stack for improved diagnostics. Prefer this method when you have concrete types or an available TypeName.
Equivalent to map, but accumulates the destination type in the type stack for improved diagnostics. Prefer this method when you have concrete types or an available TypeName.