R/interval.R

Defines functions interval

Documented in interval

interval <-
function(min,max) {
	rval= list(
			minValue = min,
			maxValue = max
	)
	class(rval) = "interval"
	return(rval)
}

Try the ISDA.R package in your browser

Any scripts or data that you put into this service are public.

ISDA.R documentation built on May 31, 2017, 5:18 a.m.