checkLabel method

int checkLabel(
  1. String? label
)

Implementation

int checkLabel( String? label ){
//		for( var i = 0; i < 256; i++ ){
//			if( _label[i] != null ){
//				if( _label[i] == label ){
//					return i;
//				}
//			}
//		}
	if( _index.containsKey( label ) ){
		return _index[label]!;
	}
	return -1;
}