Struct partial_function::BoundedFunction
[−]
[src]
pub struct BoundedFunction {
pub func: fn(_: f32) -> f32,
pub lower: f32,
pub higher: f32,
}A regular function that is only defined between lower and higher. If two functions intersect their higher and lower bounds respectively. The second will take precedence where f(lower).
Fields
func: fn(_: f32) -> f32
The stored function f(x) = ???
lower: f32
The lower bound of the function.
higher: f32
The higher bound of the function.