### Proposal: ```cs public static IEnumerable<T> WhereNotNull<T>(this IEnumerable<T?> source) where T : class; public static IEnumerable<T> WhereNotNull<T>(this IEnumerable<T?> source) where T : struct; ```
Proposal: