Represents a delegate that can be used to set the components of a vector.
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics.SinglePrecision.Net40 (in Extreme.Numerics.SinglePrecision.Net40.dll) Version: 4.0.10170.0 (4.0.11003.0)
Syntax
| C# |
public delegate float SingleVectorFiller(
int index
)
|
| Visual Basic (Declaration) |
Public Delegate Function SingleVectorFiller ( _
index As Integer _
) As Single
|
| Visual C++ |
public delegate float SingleVectorFiller(
int index
)
|
| F# |
type SingleVectorFiller =
delegate of
index:int -> float32
|
Return Value
The value of the component at the specified index.
See Also