Implicit conversion that allows to call as[A] on any RequestReader[Seq[String]] to perform a type conversion
based on an implicit DecodeRequest[A] which must be in scope.
The resulting reader will fail when the result is non-empty and type conversion fails on one or more of the
elements in the Seq. It will succeed if the result is empty or type conversion succeeds for all elements.
Implicit conversion that allows to call
as[A]
on anyRequestReader[Seq[String]]
to perform a type conversion based on an implicit DecodeRequest[A] which must be in scope.The resulting reader will fail when the result is non-empty and type conversion fails on one or more of the elements in the
Seq
. It will succeed if the result is empty or type conversion succeeds for all elements.