-
Notifications
You must be signed in to change notification settings - Fork 36
Methods_T_CodeJam_Arithmetic_OperatorsFactory
Andrew Koryavchenko edited this page Jul 4, 2017
·
4 revisions
The OperatorsFactory type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() |
BinaryOperator(T) | Binary operator factory method. |
![]() ![]() |
ClearFlagOperator(T) | Emits code for (value & ~flag) operator. |
![]() ![]() |
Comparison(T) | Comparison factory method.. |
![]() ![]() |
ComparisonOperator(T) | Compare operator factory method.. |
![]() ![]() |
GetNaN(T) | Returns the NaN value. |
![]() ![]() |
GetNegativeInfinity(T) | Returns the negative infinity value. |
![]() ![]() |
GetPositiveInfinity(T) | Returns the positive infinity value. |
![]() ![]() |
HasNaN(T) | Determines whether the type has NaN value. |
![]() ![]() |
HasNegativeInfinity(T) | Determines whether the type has negative infinity value. |
![]() ![]() |
HasPositiveInfinity(T) | Determines whether the type has positive infinity value. |
![]() ![]() |
IsAnyFlagSetOperator(T) | Emits code for (flag == 0) || ((value & flag) != 0) check. |
![]() ![]() |
IsFlagSetOperator(T) | Emits code for (value & flag) == flag check. |
![]() ![]() |
SetFlagOperator(T) | Emits code for (value | flag) operator. |
![]() ![]() |
UnaryOperator(T) | Unary operator factory method. |