File size: 979 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | using System;
namespace Unity.VisualScripting.Dependencies.NCalc
{
/// <summary>
/// Provides enumerated values to use to set evaluation options.
/// </summary>
[Flags]
public enum EvaluateOptions
{
/// <summary>
/// Specifies that no options are set.
/// </summary>
None = 1,
/// <summary>
/// Specifies case-insensitive matching.
/// </summary>
IgnoreCase = 2,
/// <summary>
/// No-cache mode. Ingores any pre-compiled expression in the cache.
/// </summary>
NoCache = 4,
/// <summary>
/// Treats parameters as arrays and result a set of results.
/// </summary>
IterateParameters = 8,
/// <summary>
/// When using Round(), if a number is halfway between two others, it is rounded toward the nearest number that is away
/// from zero.
/// </summary>
RoundAwayFromZero = 16
}
}
|