Is this a normal behaviour ?
---
void main()
{
import std.algorithm;
auto list = [0,1,2,3];
alias poly = map;
list.poly!(a => a + a);
}
---outputs: "Error: no property 'poly' for type 'int[]'"
Is this a normal behaviour ?
---
void main()
{
import std.algorithm;
auto list = [0,1,2,3];
alias poly = map;
list.poly!(a => a + a);
}
---outputs: "Error: no property 'poly' for type 'int[]'"