Skip to content

Commit 13348e8

Browse files
invariant functor call
1 parent d1d29da commit 13348e8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/functor.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ functor_tuple(f, x, ::Nothing) = x
5858
function fmap1(f, x, dx)
5959
func, re = functor(x)
6060
map(func, dx) do x, x̄
61-
functor_tuple(f, x, x̄)
61+
# functor_tuple(f, x, x̄)
62+
f(x, x̄)
6263
end |> re
6364
end
6465

0 commit comments

Comments
 (0)