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 property Static member AreEqual AreEqual operator.
Public property Static member AreNotEqual AreNotEqual operator.
Public property Static member BitwiseAnd BitwiseAnd operator.
Public property Static member BitwiseOr BitwiseOr operator.
Public property Static member Compare Comparison callback
Public property Static member Div Div operator.
Public property Static member GreaterThan GreaterThan operator.
Public property Static member GreaterThanOrEqual GreaterThanOrEqual operator.
Public property Static member HasNaN Check for the NaN value.
Public property Static member HasNegativeInfinity Check for the negative infinity value.
Public property Static member HasPositiveInfinity Check for the positive infinity value.
Public property Static member LeftShift LeftShift operator.
Public property Static member LessThan LessThan operator.
Public property Static member LessThanOrEqual LessThanOrEqual operator.
Public property Static member Minus Minus operator.
Public property Static member Modulo Modulo operator.
Public property Static member Mul Mul operator.
Public property Static member NaN NaN value
Public property Static member NegativeInfinity Negative infinity value
Public property Static member OnesComplement OnesComplement operator.
Public property Static member Plus Plus operator.
Public property Static member PositiveInfinity Positive infinity value
Public property Static member RightShift RightShift operator.
Public property Static member UnaryMinus UnaryMinus operator.
Public property Static member Xor Xor operator.
  Back to Top

See Also

Reference

CodeJam.Arithmetic Namespace

Clone this wiki locally