![]() | ![]() | ![]() | interval-end | ![]() |
| interval
| [Function] |
Purpose
Obtain the end value of an interval.
Setf syntax
|
interval) end-value)
|
Package :gbbopen
Module :gbbopen-core
Arguments and values
interval | An interval | |
end-value | A number |
Returns
The end value of the interval.
See also
interval-start
interval-values
> (interval-end '(1 2)) 2 > (interval-end '(1 . 2)) 2 > (interval-end #(1 2)) 2 > (defparameter *x* (make-interval 1 2)) *x* > *x* (1 . 2) > (setf (interval-end *x*) 4) 4 > *x* (1 . 4) >
The GBBopen Project
![]() | ![]() | ![]() | interval-end | ![]() |