| Name | Description |
---|
| PointwiseBinary(ActionT, VectorT, T) |
Helper function to apply a binary function which takes a scalar and
a vector and modifies the latter in place. A copy of the "this"
vector is therefore first made and then passed to f together with
the scalar argument. The copy is then returned as the result
|
| PointwiseBinary(ActionVectorT, VectorT, VectorT) |
Helper function to apply a binary function which takes two vectors
and modifies the latter in place. A copy of the "this" vector is
first made and then passed to f together with the other vector. The
copy is then returned as the result
|
| PointwiseBinary(ActionT, VectorT, T, VectorT) |
Helper function to apply a binary function which takes a scalar and
a vector, modifies the latter in place and returns void.
|
| PointwiseBinary(ActionVectorT, VectorT, VectorT, VectorT) |
Helper function to apply a binary function which takes two vectors
and modifies the second one in place
|