ここに関数があります
(map (\ (a, b) -> dir a b) $ routes
どこroutesにタプルのリストがあり、それが含まれています
routes = [...
("graph-fb", seeOther redirectUrlGraphEmail $ toResponse ""),
("post-fb", seeOther redirectUrlGraphPost $ toResponse ""),
...]
bここに質問があります: この関数を呼び出して各タプルに dir を適用すると、最初のようにどの関数が返されるかdir a b、関数seeOther redirectUrlGraphEmailまたはseeOther redirectUrlGraphEmail $ toResponse ""?