Tagged Questions
2
votes
1answer
57 views
pure function of functions that returns functions in D
I'm trying to create a pure function that returns the multiplication of two other pure functions:
pure Func multiplyFunctions(Func,Real)(scope const Func f1, scope const Func f2)
{
return (Real ...
1
vote
0answers
54 views
type of a function in D
I'm interested in creating a function Derivative that returns a function that is the derivative of some function that is passed to it, at some point. However, I want to be able to specialize this so ...