Feb 2009 -- Due to time pressures, the ongoing development of 'rope' has been suspended temporarily.

ROPE Language Reference - "iseoln"

"iseoln" pops a string off the top of the stack and checks whether every character it contains is an end-of-line ( "\n" or "\r" ). If so: 1 (true) is pushed back onto the stack, otherwise 0 is pushed back.

As a special case: if the string is empty, the return is 0.

Example:

 "\r\n" iseoln println		# -- prints: 1
 "Hello" islower println	# -- prints: 0

See Also

isalnum, isalpha, isascii, iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace, isupper, isxdigit