Package cern.colt.function
Interface IntFunction
-
- All Known Implementing Classes:
AbstractContinousDistribution
,AbstractDistribution
,DRand
,MersenneTwister
,RandomEngine
,Uniform
public interface IntFunction
Interface that represents a function object: a function that takes a single argument and returns a single value.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
apply(int argument)
Applies a function to an argument.
-