undef method

int undef(
  1. String? label
)

Implementation

int undef( String? label ){
	int index;
	if( (index = checkLabel( label )) >= 0 ){
		setLabel( index, null, false );
		_flag[index] = ClipGlobal.labelUnused;
	}
	return index;
}