isCharSpace static method

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

Implementation

static bool isCharSpace( String str, int index ){
	return ((ClipMath.charAt( str, index ) == ' ') || (ClipMath.charCodeAt( str, index ) == charCodeSpace));
}