Exemplo n.º 1
0
 public static bool RoundAwayFromZero(this EvaluateOptions opts)
 {
     return(opts.Has(EvaluateOptions.RoundAwayFromZero));
 }
Exemplo n.º 2
0
 public static bool IterateParameters(this EvaluateOptions opts)
 {
     return(opts.Has(EvaluateOptions.IterateParameters));
 }
Exemplo n.º 3
0
 public static bool IgnoreCase(this EvaluateOptions opts)
 {
     return(opts.Has(EvaluateOptions.IgnoreCase));
 }
Exemplo n.º 4
0
 public static bool NoCache(this EvaluateOptions opts)
 {
     return(opts.Has(EvaluateOptions.NoCache));
 }
Exemplo n.º 5
0
 public static bool AllowNullParameter(this EvaluateOptions opts)
 {
     return(opts.Has(EvaluateOptions.AllowNullParameter));
 }