@@ -52,7 +52,7 @@ public static class EnumerableExtensions
5252 /// <param name="source">The source.</param>
5353 /// <param name="items">The items.</param>
5454 /// <returns>IEnumerable<T>.</returns>
55- [ Information ( nameof ( AddDistinct ) , author : "David McCarter" , createdOn : "3/22/2023" , UnitTestCoverage = 100 , BenchMarkStatus = BenchMarkStatus . None , Status = Status . Updated ) ]
55+ [ Information ( nameof ( AddDistinct ) , author : "David McCarter" , createdOn : "3/22/2023" , UnitTestCoverage = 100 , BenchMarkStatus = BenchMarkStatus . None , Status = Status . Available ) ]
5656 public static IEnumerable < T > AddDistinct < T > ( [ NotNull ] this IEnumerable < T > source , [ NotNull ] params T [ ] items )
5757 {
5858 source ??= [ ] ;
@@ -209,7 +209,7 @@ public static int Count([NotNull] this IEnumerable collection)
209209 /// <param name="items">The items.</param>
210210 /// <param name="ensureUnique">if set to <c>true</c> [ensure unique].</param>
211211 /// <returns>Collection<T>.</returns>
212- [ Information ( nameof ( Create ) , "David McCarter" , "11/12/2020" , UnitTestCoverage = 100 , BenchMarkStatus = BenchMarkStatus . None , Status = Status . Updated ) ]
212+ [ Information ( nameof ( Create ) , "David McCarter" , "11/12/2020" , UnitTestCoverage = 100 , BenchMarkStatus = BenchMarkStatus . None , Status = Status . Available , Documentation = "https://bit.ly/SpargineMay2024" ) ]
213213 public static Collection < T > Create < T > ( [ NotNull ] this IEnumerable < T > items , bool ensureUnique )
214214 {
215215 items = items . ArgumentNotNull ( ) ;
@@ -264,7 +264,7 @@ public static IEnumerable<T> EnsureUnique<T>([NotNull] this IEnumerable<T> colle
264264 /// <exception cref="ArgumentNullException">List cannot be null or empty.</exception>
265265 /// <exception cref="ArgumentNullException">Predicate cannot be null.</exception>
266266 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
267- [ Information ( nameof ( FastAny ) , "David McCarter" , "11/21/2020" , BenchMarkStatus = BenchMarkStatus . None , UnitTestCoverage = 100 , Status = Status . Updated , Documentation = "https://bit.ly/SpargineApril2022" ) ]
267+ [ Information ( nameof ( FastAny ) , "David McCarter" , "11/21/2020" , BenchMarkStatus = BenchMarkStatus . None , UnitTestCoverage = 100 , Status = Status . Available , Documentation = "https://bit.ly/SpargineApril2022" ) ]
268268 public static bool FastAny < T > ( [ NotNull ] this IEnumerable < T > collection , [ NotNull ] Func < T , bool > predicate )
269269 {
270270 collection = collection . ArgumentNotNull ( ) ;
@@ -301,7 +301,7 @@ public static bool FastAny<T>([NotNull] this IEnumerable<T> collection, [NotNull
301301 /// <param name="collection">The collection.</param>
302302 /// <returns>long.</returns>
303303 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
304- [ Information ( nameof ( FastCount ) , "David McCarter" , "4/12/2022" , BenchMarkStatus = BenchMarkStatus . None , UnitTestCoverage = 100 , Status = Status . New ) ]
304+ [ Information ( nameof ( FastCount ) , "David McCarter" , "4/12/2022" , BenchMarkStatus = BenchMarkStatus . None , UnitTestCoverage = 100 , Status = Status . Available , Documentation = "https://bit.ly/SpargineMay2024" ) ]
305305 public static long FastCount < T > ( [ NotNull ] this IList < T > collection ) => collection . ArgumentNotNull ( ) . Count ;
306306
307307 /// <summary>
0 commit comments