Project Principles
The following principles apply when coding mathlib.net functions:1. Aim to be type agnostic
Functions should accept all array types and scalar types that are of the following type/underlying-type:- complex
- fcomplex
- double
- float
- long
- int
- short
- byte
- char
These should be upgraded to the lowest common complexity of the other parameters where necessary.
More coming soon...