Skip to content

T_CodeJam_Arithmetic_Operators_1

Andrew Koryavchenko edited this page Jun 17, 2018 · 10 revisions

Operators(T) Class

Callbacks for common arithmetic actions. Look at OperatorsPerformanceTest to see why.

Callbacks for common arithmetic actions. Look at OperatorsPerformanceTest to see why.

Inheritance Hierarchy

System.Object
  CodeJam.Arithmetic.Operators(T)
Namespace: CodeJam.Arithmetic
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0

Syntax

C#

public static class Operators<T>

VB

Public NotInheritable Class Operators(Of T)

F#

[<AbstractClassAttribute>]
[<SealedAttribute>]
type Operators<'T> =  class end

Type Parameters

 

T
The type of the operands.
  The Operators(T) type exposes the following members.

Properties

 

Name Description
Public propertyStatic member AreEqual AreEqual operator.
Public propertyStatic member AreNotEqual AreNotEqual operator.
Public propertyStatic member BitwiseAnd BitwiseAnd operator.
Public propertyStatic member BitwiseOr BitwiseOr operator.
Public propertyStatic member Compare Comparison callback
Public propertyStatic member Div Div operator.
Public propertyStatic member GreaterThan GreaterThan operator.
Public propertyStatic member GreaterThanOrEqual GreaterThanOrEqual operator.
Public propertyStatic member HasNaN Check for the NaN value.
Public propertyStatic member HasNegativeInfinity Check for the negative infinity value.
Public propertyStatic member HasPositiveInfinity Check for the positive infinity value.
Public propertyStatic member LeftShift LeftShift operator.
Public propertyStatic member LessThan LessThan operator.
Public propertyStatic member LessThanOrEqual LessThanOrEqual operator.
Public propertyStatic member Minus Minus operator.
Public propertyStatic member Modulo Modulo operator.
Public propertyStatic member Mul Mul operator.
Public propertyStatic member NaN NaN value
Public propertyStatic member NegativeInfinity Negative infinity value
Public propertyStatic member OnesComplement OnesComplement operator.
Public propertyStatic member Plus Plus operator.
Public propertyStatic member PositiveInfinity Positive infinity value
Public propertyStatic member RightShift RightShift operator.
Public propertyStatic member UnaryMinus UnaryMinus operator.
Public propertyStatic member Xor Xor operator.
  Back to Top

See Also

Reference

CodeJam.Arithmetic Namespace

Clone this wiki locally