Exemplo n.º 1
0
 private static bool IsLeftLimit(ExcludedRange range)
 {
     return(range.LeftLimit != -1);
 }
Exemplo n.º 2
0
 public bool Contains(ExcludedRange rangeInCase)
 => LeftLimit <= rangeInCase.LeftLimit && RightLimit >= rangeInCase.RightLimit;
Exemplo n.º 3
0
 private static bool IsRightLimit(ExcludedRange limit)
 {
     return(limit.RightLimit != -1);
 }