Applies each of a list of functions to a shared sequence of arguments
ComapApply[{f1, f2, …}, expr]
ComapApply[fs]
ComapApply[{f, g, h}, {1, 2}]
→ {f[1, 2], g[1, 2], h[1, 2]}ComapApply[{f, g, h}][{1, 2, 3}]
→ {f[1, 2, 3], g[1, 2, 3], h[1, 2, 3]}ComapApply[<|"a" -> f, "b" -> g, "c" -> h|>, {x, y}]
→ <|a -> f[x, y], b -> g[x, y], c -> h[x, y]|>