Since last week, mapping a function of more than one arguments over result from ee.List.sequence using 'bind' no longer works although it can be mapped over a regular list. Why? e.g.
// simple function
var add_x = function(n, x) {
return n + x;
}
**// This command returns expected result
print([1,2,3,4,5].map(add_x.bind(null,10)));
[11,12,13,14,15]
**// This command results in an error
print(ee.List.sequence(1,5,1).map(add_x.bind(null,10)));
List (Error)
List.map: A mapped algorithm must take one argument.