Calls the function named functionName from this dynamic library.
Exception if the function is not found or has null address.
extern(C) alias F = int function(int) nothrow; const int res = dynLib.call!F("f", 5);
See Implementation
Calls the function named functionName from this dynamic library.