DavidArno / SuccincT

Discriminated unions, pattern matching and partial applications for C#
MIT License
266 stars 15 forks source link

Add support for C# 7 #9

Closed DavidArno closed 7 years ago

DavidArno commented 7 years ago
public (T head, IConsEnumerable<T> tail) Cons<T>(this IEnumerable<T> collection); 

See #15 for details of this change.

DavidArno commented 7 years ago

v3.0.0 now release, so closing this as complete.