Closed oliverbooth closed 5 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 97.96%. Comparing base (
8eaa01b
) to head (7f92772
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Requested by @RealityProgrammer
This change introduces extension methods for the generic math interfaces introduced in .NET 7. Most of the extension methods which were duplicated for all built in numeric types have been changed to accept
INumber
,IBinaryInteger
, or a similar interface, in their stead.This also means that any additional types I've missed are covered, and also covers any future numeric types .NET may plan to add as well as any custom defined types.