T - the input typepublic interface HasPlus<T>
plus(int)-methods for generating new expressions for the sum of this
value and something else.| Modifier and Type | Method and Description |
|---|---|
HasPlus<T> |
plus(byte other)
Creates and returns an expression that returns the sum of the result from
the current expression and the other term.
|
ToDouble<T> |
plus(double other)
Creates and returns an expression that returns the sum of the result from
the current expression and the other term.
|
HasPlus<T> |
plus(int other)
Creates and returns an expression that returns the sum of the result from
the current expression and the other term.
|
HasPlus<T> |
plus(long other)
Creates and returns an expression that returns the sum of the result from
the current expression and the other term.
|
HasPlus<T> |
plus(ToByte<T> other)
Creates and returns an expression that returns the sum of the result from
the current expression and the other term.
|
ToDouble<T> |
plus(ToDouble<T> other)
Creates and returns an expression that returns the sum of the result from
the current expression and the other term.
|
HasPlus<T> |
plus(ToInt<T> other)
Creates and returns an expression that returns the sum of the result from
the current expression and the other term.
|
HasPlus<T> |
plus(ToLong<T> other)
Creates and returns an expression that returns the sum of the result from
the current expression and the other term.
|
HasPlus<T> plus(byte other)
9 and the other term was set to
3, then the result of the returned expression would be 12.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
other - the other term used for the additionHasPlus<T> plus(ToByte<T> other)
9 and the other term was set to
3, then the result of the returned expression would be 12.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
other - the other term used for the additionHasPlus<T> plus(int other)
9 and the other term was set to
3, then the result of the returned expression would be 12.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
other - the other term used for the additionHasPlus<T> plus(ToInt<T> other)
9 and the other term was set to
3, then the result of the returned expression would be 12.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
other - the other term used for the additionHasPlus<T> plus(long other)
9 and the other term was set to
3, then the result of the returned expression would be 12.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
other - the other term used for the additionHasPlus<T> plus(ToLong<T> other)
9 and the other term was set to
3, then the result of the returned expression would be 12.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
other - the other term used for the additionToDouble<T> plus(double other)
9 and the other term was set to
3, then the result of the returned expression would be 12.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
other - the other term used for the additionToDouble<T> plus(ToDouble<T> other)
9 and the other term was set to
3, then the result of the returned expression would be 12.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
other - the other term used for the additionCopyright © 2019 Speedment, Inc.. All rights reserved.