Show / Hide Table of Contents

Class AddTerm

Term representing the addition operator -- adds two terms together.

Inheritance
object
AddTerm
Implements
ITerm
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: GoRogue.DiceNotation.Terms
Assembly: GoRogue.dll
Syntax
[DataContract]
public class AddTerm : ITerm

Constructors

View Source

AddTerm(ITerm, ITerm)

Constructor. Takes the two terms to add.

Declaration
public AddTerm(ITerm term1, ITerm term2)
Parameters
Type Name Description
ITerm term1

Left-hand side.

ITerm term2

Right-hand side.

Fields

View Source

Term1

First term (left-hand side).

Declaration
[DataMember]
public readonly ITerm Term1
Field Value
Type Description
ITerm
View Source

Term2

Second term (right-hand side).

Declaration
[DataMember]
public readonly ITerm Term2
Field Value
Type Description
ITerm

Methods

View Source

GetResult(IEnhancedRandom)

Adds its two terms together, evaluating those two terms as necessary.

Declaration
public int GetResult(IEnhancedRandom rng)
Parameters
Type Name Description
IEnhancedRandom rng

The rng to use, passed to other terms.

Returns
Type Description
int

The result of adding Term1 and Term2.

View Source

ToString()

Converts to a parenthesized string.

Declaration
public override string ToString()
Returns
Type Description
string

A parenthesized string representing the term.

Overrides
object.ToString()

Implements

ITerm

Extension Methods

Utility.Yield<T>(T)
  • View Source
In this article
Back to top Generated by DocFX