Skip to content

Commit

Permalink
Add links to partial application and function composition
Browse files Browse the repository at this point in the history
  • Loading branch information
pfultz2 committed Apr 13, 2016
1 parent 18c9688 commit 0e4ee8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/src/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ And it could be called like this:

auto three = 1 <sum> 2;

In addition, adaptors are provided that support simple functional operations such as partial application and function composition:
In addition, adaptors are provided that support simple functional operations such as [partial application](https://en.wikipedia.org/wiki/Partial_application) and [function composition](https://en.wikipedia.org/wiki/Function_composition):

auto add_1 = partial(sum)(1);
auto add_2 = compose(add_1, add_1);
Expand Down

0 comments on commit 0e4ee8e

Please sign in to comment.