Would this be considered a Lucee6 bug or an expect...
# lucee
c
Would this be considered a Lucee6 bug or an expected breaking change? It seems that using the map member function on a list in Lucee6 uses each character as the iterator whereas in Lucee5 (example below), each comma delimited value is used as the iterator. https://trycf.com/gist/6aa865b62211f2c2cd929e773079c220/lucee5?theme=monokai
b
@chapmandu I'm pretty sure this is on purpose
If you want to interact with the string as a list, you need to use
.listEach()
I actually put in the ticket for this
👍 1
It was also an Adobe compat issue
c
snap! I was just about to post the same. Thanks Brad.. I see listMap is the solution..