Returns an ordinal of the same type as ordinal x, and that is equivalent to the next higher value possible for ordinal x.
ORDINALSUCC(x)
Using the ORDINAL definitions from the examples in the DEFINE ORDINAL topic:
course = Geometry; put skip list (ORDINALNAME(course)); /* GEOMETRY */ put skip list (BINARYVALUE(course)); /* 102 */ put skip list (BINARYVALUE(ORDINALPRED(course))); /* 101 */ put skip list (BINARYVALUE(ORDINALSUCC(course))); /* 301 */
None.