June 23, 2017 [Issue 11012] [TDPL] is(typeof(f) == function) fails with some functions | ||||
---|---|---|---|---|
| ||||
https://issues.dlang.org/show_bug.cgi?id=11012 --- Comment #9 from Alexander <ismailsiege@gmail.com> --- I'm not sure about it being a bug, though I was before. I think spec should be a little more explicit on the difference between function and function pointer types. For now, this templates solve all my problems: template isFunctionPointerType(T: FT*, FT) { enum isFunctionPointerType = is(FT == function); } template ReturnType(FuncType: FT*, FT) { static if (is(FT RT == return)) alias ReturnType = RT; else static assert(0, "FuncType must be function pointer type"); } template ParamTypes(FuncType: FT*, FT) { static if (is(FT Params == function)) alias ParamTypes = Params; else static assert(0, "FuncType must be function pointer type"); } -- |
December 17, 2022 [Issue 11012] [TDPL] is(typeof(f) == function) fails with some functions | ||||
---|---|---|---|---|
| ||||
https://issues.dlang.org/show_bug.cgi?id=11012 Iain Buclaw <ibuclaw@gdcproject.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P2 |P3 -- |
Copyright © 1999-2021 by the D Language Foundation