Higher Order Function..
higher order function or def function including function-----------
the function which has input parameter as function..
or return function as output is Called Higher Order Function.
scala> def Transform(x: Int, f(x): Int => Int) = {f(x)}
<co...
theman.hashnode.dev1 min read