-
Notifications
You must be signed in to change notification settings - Fork 36
Methods_T_CodeJam_Arithmetic_OperatorsFactory
andrewvk edited this page Nov 5, 2016
·
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.. |
![]() ![]() |
GetNegativeInfinity(T) | Returns the negative infinity value. |
![]() ![]() |
GetPositiveInfinity(T) | Returns the positive infinity 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. |