ICU 4.8.1.1  4.8.1.1
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ustringtrie.h
Go to the documentation of this file.
1 /*
2 *******************************************************************************
3 * Copyright (C) 2010-2011, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 *******************************************************************************
6 * file name: udicttrie.h
7 * encoding: US-ASCII
8 * tab size: 8 (not used)
9 * indentation:4
10 *
11 * created on: 2010dec17
12 * created by: Markus W. Scherer
13 */
14 
15 #ifndef __USTRINGTRIE_H__
16 #define __USTRINGTRIE_H__
17 
23 #include "unicode/utypes.h"
24 
64 };
65 
72 #define USTRINGTRIE_MATCHES(result) ((result)!=USTRINGTRIE_NO_MATCH)
73 
83 #define USTRINGTRIE_HAS_VALUE(result) ((result)>=USTRINGTRIE_FINAL_VALUE)
84 
92 #define USTRINGTRIE_HAS_NEXT(result) ((result)&1)
93 
94 #endif /* __USTRINGTRIE_H__ */
The input unit(s) continued a matching string but there is no value for the string so far...
Definition: ustringtrie.h:47
The input unit(s) continued a matching string and there is a value for the string so far...
Definition: ustringtrie.h:55
UStringTrieResult
Return values for BytesTrie::next(), UCharsTrie::next() and similar methods.
Definition: ustringtrie.h:32
The input unit(s) did not continue a matching string.
Definition: ustringtrie.h:40
Basic definitions for ICU, for both C and C++ APIs.
The input unit(s) continued a matching string and there is a value for the string so far...
Definition: ustringtrie.h:63