How can I define a composite function in a functional language, in particular with Ocaml? For example, if I write a function that calculates the negation of the result of another function, that is: not(f(x)) where f(x) returns a boolean. How can I define it?
| ||||
|
feedback
|
|
Given some function
you want to be able to generate another function to wrap it to negate the result. Let's consider the type for this new function, let's call it
Why is this the type? Why not So now given these constraints, how can we write the
Well we first have to consider that this function needs to return a function:
What next? Well, we know that the new function we create should call our wrapped function with the argument and negate it. Let's do that, call the function with the argument:
Let's see it in action:
| ||||
|
feedback
|
|
I'm not sure exactly how far you're looking to go here — the code you wrote will work fine. So I'll give a simple step-by-step on how you write this stuff from scratch. Simple negation is just:
You can how write For a function that composes functions, you can use:
So then we can do:
| |||||||
feedback
|
|
Wow, what's with all of these overly complicated answers? What's wrong with:
To get your
Additionally, you can do cool stuff like:
Now the
EDIT: Oh, I guess Chuck actually did do this. I probably shouldn't have just skimmed. In any case, I happen to like folding over the compose function, so I'll keep this up. :p | |||
|
feedback
|