-
Notifications
You must be signed in to change notification settings - Fork 36
M_CodeJam_PerfTests_Running_Limits_CompetitionLimit_IsMaxLimitOk
andrewvk edited this page Nov 8, 2016
·
2 revisions
Helper method for checking the value against max limit.
Namespace: CodeJam.PerfTests.Running.Limits
Assembly: CodeJam.PerfTests (in CodeJam.PerfTests.dll) Version: 1.1.0.0 (1.1.0.0)
C#
protected static bool IsMaxLimitOk(
double maxLimit,
double value
)
VB
Protected Shared Function IsMaxLimitOk (
maxLimit As Double,
value As Double
) As Boolean
F#
static member IsMaxLimitOk :
maxLimit : float *
value : float -> bool
- maxLimit
- Type: System.Double
The limit. - value
- Type: System.Double
The value to check.
Type: Booleantrue
if the value fits into limit.
CompetitionLimit Class
CodeJam.PerfTests.Running.Limits Namespace