View source code
Display the source code in std/functional.d from which this
page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a
Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.
Requires a signed-in GitHub account. This works well for small changes.
If you'd like to make larger changes you may want to consider using
local clone.
Template std.functional.reverseArgs
N-ary predicate that reverses the order of arguments, e.g., given
pred(a, b, c)
, returns pred(c, b, a)
.
template reverseArgs(alias pred)
;
Contained Functions
Name | Description |
---|---|
reverseArgs |
Parameters
Name | Description |
---|---|
pred | A callable |
Returns
A function which calls pred
after reversing the given parameters
Example
alias gt = reverseArgs!(binaryFun!("a < b"));
assert(gt(2, 1) && !gt(1, 1));
Example
int x = 42;
bool xyz(int a, int b) { return a * x < b / x; }
auto foo = &xyz;
foo(4, 5);
alias zyx = reverseArgs!(foo);
writeln(zyx(5, 4)); // foo(4, 5)
Example
alias gt = reverseArgs!(binaryFun!("a < b"));
assert(gt(2, 1) && !gt(1, 1));
int x = 42;
bool xyz(int a, int b) { return a * x < b / x; }
auto foo = &xyz;
foo(4, 5);
alias zyx = reverseArgs!(foo);
writeln(zyx(5, 4)); // foo(4, 5)
Example
int abc(int a, int b, int c) { return a * b + c; }
alias cba = reverseArgs!abc;
writeln(abc(91, 17, 32)); // cba(32, 17, 91)
Example
int a(int a) { return a * 2; }
alias _a = reverseArgs!a;
writeln(a(2)); // _a(2)
Example
int b() { return 4; }
alias _b = reverseArgs!b;
writeln(b()); // _b()
Authors
License
Copyright © 1999-2022 by the D Language Foundation | Page generated by ddox.