Esempio n. 1
0
 /// <summary>
 /// Checks if the timestamp is included in the interval set
 /// </summary>
 public static bool Covers(this IDisjointIntervalSet set, DateTimeOffset timestamp) =>
 set.Any(x => x.Covers(timestamp));