L
- the type of the variable on the left.R
- the type of the variable on the right.public class MultiVariable<L,R> extends Object
An object holding multiple variables; typically used to create
multi-parameters functions
.
Multi-variables may represent an unbounded number of variables.
MultiVariable<Double, MultiVariable<Integer, Boolean>> tertiaryVariable = new MultiVariable(2.3, new MultiVariable(57, true));
Constructor and Description |
---|
MultiVariable(L left,
R right)
Returns a multi-variable holding the specified objects (possibly
multi-variables themselves).
|
Copyright © 2005-2013 Javolution. All Rights Reserved.