Open maxitg opened 4 years ago
Describe the bug The following should not remove Hold:
Hold
In[] := SetReplace[{1, 2}, {a_, b_} :> {Hold[a + b]}]
Out[] = {3}
It should do the same thing as Replace:
Replace
In[] := Replace[{1, 2}, {a_, b_} :> {Hold[a + b]}]
Out[] = {Hold[1 + 2]}
Version (please complete the following information):
Might not be worth fixing before #67 or #401.
Describe the bug The following should not remove
Hold
:It should do the same thing as
Replace
:Version (please complete the following information):