isCharEnter static method

bool isCharEnter(
  1. String str,
  2. int index
)

Implementation

static bool isCharEnter( String str, int index ){
	String chr = ClipMath.charAt( str, index );
	return ((chr == '\r') || (chr == '\n'));
}