Interface DoubleFunction
public interface DoubleFunction
DoubleFunction carries out a specific transformation function on a double value.
Copyright (c) 2019-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUNITS License.
- Author:
- Alexander Verbraeck
-
Method Summary
Modifier and TypeMethodDescriptiondouble
apply
(double value) Carry out a specific transformation function on a double value.
-
Method Details
-
apply
double apply(double value) Carry out a specific transformation function on a double value.- Parameters:
value
- double; the value to transform- Returns:
- double; the transformed value
-