Closed springcomp closed 2 weeks ago
Given [true, false, true]
[true, false, true]
The following expression works:
map(& @ && 'truthy', @)
["truthy", false, "truthy"]
However, surrounding the expression-type with raises a syntax-error:
syntax-error
map(& (@ && 'truthy'), @)
Given
[true, false, true]
The following expression works:
map(& @ && 'truthy', @)
and returns["truthy", false, "truthy"]
✔However, surrounding the expression-type with raises a
syntax-error
:map(& (@ && 'truthy'), @)
raisessyntax-error
❌