로딩중...
검색중...
일치하는것 없음
tpriorities.hpp 파일 참조

이 파일의 소스 코드 페이지로 가기

클래스

struct  by::tprior< T >
 Priority wrapper for type matching 더 자세히 ...
 
class  by::tpriorities< T >
 Collection of prioritized elements 더 자세히 ...
 

타입정의

typedef tpriorities< nodeby::priorities
 

열거형 타입

enum  by::priorType { EXACT_MATCH = 0 , by::NUMERIC_MATCH = 1 , by::IMPLICIT_MATCH = 2 , by::NO_MATCH }
 

함수

const _nout ncharby::getPriorTypeName (priorType type)
 

열거형 타입 문서화

◆ priorType

the lower value, the higher priority.

열거형 멤버
NUMERIC_MATCH 

lv0: exact match.

IMPLICIT_MATCH 

lv1: numeric match. it's almost same level of lv0. except lv1 allows numeric implicit type cast (e.g. byte to int or reverse order)

NO_MATCH 

lv2: implicit cast match. it's almost same level of lv1 except it allows all kind of implicit type cast.

to Top