Morning all. Any advice on combining the results f...
# http4k
d
Morning all. Any advice on combining the results from lenses into a single lens? I have
Copy code
val headerValue = Header.optional("CA-ID")
val cookieValue = Cookies.map { it.value }.optional("CA-ID")
which I'd like to combine into a single Lens<Request, String?> with the first non-null value found.