-
Notifications
You must be signed in to change notification settings - Fork 36
T_CodeJam_Arithmetic_Operators_1
andrewvk edited this page Apr 8, 2016
·
10 revisions
[This is preliminary documentation and is subject to change.]
Callbacks for common arithmetic actions. Look at OperatorsPerformanceTest to see why.
System.Object
CodeJam.Arithmetic.Operators(T)
Namespace: CodeJam.Arithmetic
Assembly: CodeJam (in CodeJam.dll) Version: 1.0.0.0 (1.0.0.0)
C#
public static class Operators<T>
VB
Public NotInheritable Class Operators(Of T)
F#
[<AbstractClassAttribute>]
[<SealedAttribute>]
type Operators<'T> = class end
- T
Name | Description | |
---|---|---|
![]() ![]() |
BitwiseAnd | BitwiseAnd operator. |
![]() ![]() |
BitwiseOr | BitwiseOr operator. |
![]() ![]() |
Div | Div operator. |
![]() ![]() |
LeftShift | LeftShift operator. |
![]() ![]() |
Minus | Minus operator. |
![]() ![]() |
Modulo | Modulo operator. |
![]() ![]() |
Mul | Mul operator. |
![]() ![]() |
Plus | Plus operator. |
![]() ![]() |
RightShift | RightShift operator. |
![]() ![]() |
Xor | Xor operator. |
Name | Description | |
---|---|---|
![]() ![]() |
AreEqual | Equality comparison callback |
![]() ![]() |
AreNotEqual | Inequality comparison callback |
![]() ![]() |
Compare | Comparison callback |
![]() ![]() |
GreaterThan | Equality comparison callback |
![]() ![]() |
GreaterThanOrEqual | Equality comparison callback |
![]() ![]() |
LessThan | Equality comparison callback |
![]() ![]() |
LessThanOrEqual | Equality comparison callback |