17#ifndef __USTRINGTRIE_H__
18#define __USTRINGTRIE_H__
75#define USTRINGTRIE_MATCHES(result) ((result)!=USTRINGTRIE_NO_MATCH)
86#define USTRINGTRIE_HAS_VALUE(result) ((result)>=USTRINGTRIE_FINAL_VALUE)
95#define USTRINGTRIE_HAS_NEXT(result) ((result)&1)
UStringTrieResult
Return values for BytesTrie::next(), UCharsTrie::next() and similar methods.
@ USTRINGTRIE_FINAL_VALUE
The input unit(s) continued a matching string and there is a value for the string so far.
@ USTRINGTRIE_NO_MATCH
The input unit(s) did not continue a matching string.
@ USTRINGTRIE_INTERMEDIATE_VALUE
The input unit(s) continued a matching string and there is a value for the string so far.
@ USTRINGTRIE_NO_VALUE
The input unit(s) continued a matching string but there is no value for the string so far.
Basic definitions for ICU, for both C and C++ APIs.