I'm trying to use a bit of function programming. In a function like this:
int f(in int[] arr, bool delegate(int) func);
call using:
bool g(int n) { ... }
f(arr, g);
instead of:
f(arr, x => x == 0);
it is possible?
I'm trying to use a bit of function programming. In a function like this:
int f(in int[] arr, bool delegate(int) func);
call using:
bool g(int n) { ... }
f(arr, g);
instead of:
f(arr, x => x == 0);
it is possible?