linksplatform / Ranges

LinksPlatform's Platform.Ranges Class Library
https://linksplatform.github.io/Ranges
The Unlicense
4 stars 1 forks source link

Add the way to create whole range of numeric type's values #19

Closed Konard closed 4 years ago

Konard commented 5 years ago

Proposed pseudocode:

public static class Range
{
    public static Range<T> Whole<T>() => (T.MinValue, T.MaxValue);
}