コード例 #1
0
 public static bool IsLiteral(this SearchExpressionType type)
 {
     return(type.HasAny(SearchExpressionType.Literal));
 }
コード例 #2
0
 public static bool IsText(this SearchExpressionType type)
 {
     return(type.HasAny(SearchExpressionType.Literal | SearchExpressionType.Selector));
 }
コード例 #3
0
 public static bool IsIterable(this SearchExpressionType type)
 {
     return(type.HasAny(SearchExpressionType.Iterable));
 }