Пример #1
0
 public FallsIn(IContainValues <T> range)
 {
     this.range = range;
 }
Пример #2
0
 public static ReturnType falls_in <ItemToMatch, AttributeType, ReturnType>(this IProvideAccessToMatchCreationExtensions <ItemToMatch, AttributeType, ReturnType> extension_point, IContainValues <AttributeType> range)
     where AttributeType : IComparable <AttributeType>
 {
     return(extension_point.for_value_matcher(new FallsIn <AttributeType>(range)));
 }