-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTopicCollectionExtensions.cs
47 lines (42 loc) · 2.93 KB
/
TopicCollectionExtensions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
using OnTopic.Collections;
namespace OnTopic.Querying {
/*============================================================================================================================
| CLASS: TOPIC COLLECTION (EXTENSIONS)
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Provides extensions for querying <see cref="TopicCollection"/>, <see cref="KeyedTopicCollection"/>, and related
/// collections via the generic <see cref="IEnumerable{T}"/> interface.
/// </summary>
public static class TopicCollectionExtensions {
/*==========================================================================================================================
| METHOD: ANY DIRTY?
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Determines whether any of the <see cref="Topic"/> instances in the collection are marked as <see cref="Topic.
/// IsDirty()"/>.
/// </summary>
/// <remarks>
/// This does not determine if the collection itself is dirty—it only determines if any <see cref="Topic"/> instances in
/// the collection are <see cref="Topic.IsDirty()"/>. This distinction is important. For example, if a clean <see cref="
/// Topic"/> is added to the collection, then the collection will be dirty—but <see cref="AnyDirty(IEnumerable{Topic})"/>
/// will be false.
/// </remarks>
/// <param name="topics">The collection of <see cref="Topic"/> instances to operate against.</param>
/// <returns>Returns <c>true</c> if any of the <see cref="Topic"/> instances are <see cref="Topic.IsDirty()"/>.</returns>
public static bool AnyDirty(this IEnumerable<Topic> topics) => topics.Any(t => t.IsDirty(true));
/*==========================================================================================================================
| METHOD: ANY NEW?
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Determines whether any of the <see cref="Topic"/> instances in the collection are marked as <see cref="Topic.IsNew"/>.
/// </summary>
/// <param name="topics">The collection of <see cref="Topic"/> instances to operate against.</param>
/// <returns>Returns <c>true</c> if any of the <see cref="Topic"/> instances are <see cref="Topic.IsNew"/>.</returns>
public static bool AnyNew(this IEnumerable<Topic> topics) => topics.Any(t => t.IsNew);
}
}