digitalmars.D.learn - UFCS on template alias ?
- Baz (12/12) Feb 21 2015 Is this a normal behaviour ?
- bearophile (5/6) Feb 21 2015 Try to move the definition of "poly" to module-level scope.
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[]'"
Feb 21 2015
Baz:Is this a normal behaviour ?Try to move the definition of "poly" to module-level scope. This is a design decision to avoid other troubles. Bye, bearophile
Feb 21 2015








"bearophile" <bearophileHUGS lycos.com>