View Raw SPL
/* max of X values - s.xmax */
getxmax(s)
{
        local xmin, xmax;

        (xmin, xmax) = xminmax(s);

        return(xmax);
}