case class MutationState(tokens: Seq[MutationToken]) extends Product with Serializable
Represents the tokens from one or more mutations.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- MutationState
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
def
add(mutationState: MutationState): MutationState
Add the tokens from another MutationState to this.
Add the tokens from another MutationState to this.
- returns
a copy of this, for chaining
-
def
add(mutationResult: MutationResult): MutationState
Add the token from a MutationResult, if it's present, to this.
Add the token from a MutationResult, if it's present, to this.
- returns
a copy of this, for chaining
- val tokens: Seq[MutationToken]