Can Map be performed on a Scala HList
问题 I have done a few implementations of HList now. One based on Daniel Spiewak's High Wizardry in the Land of Scala talk and another based on a post in Apocalisp blog. The goal was to have a heterogenous list of which is not heterogenous in the primary type but rather the higher kind. For example: val requests = Request[String] :: Request[Int] :: HNil I would be able to do a map across the list to perform the request and result in a heterogenous list of the higher kind. So: requests.map(execute)