ICU 75.1 75.1
Loading...
Searching...
No Matches
ustringtrie.h
Go to the documentation of this file.
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
3/*
4*******************************************************************************
5* Copyright (C) 2010-2012, International Business Machines
6* Corporation and others. All Rights Reserved.
7*******************************************************************************
8* file name: udicttrie.h
9* encoding: UTF-8
10* tab size: 8 (not used)
11* indentation:4
12*
13* created on: 2010dec17
14* created by: Markus W. Scherer
15*/
16
17#ifndef __USTRINGTRIE_H__
18#define __USTRINGTRIE_H__
19
25#include "unicode/utypes.h"
26
27
68
75#define USTRINGTRIE_MATCHES(result) ((result)!=USTRINGTRIE_NO_MATCH)
76
86#define USTRINGTRIE_HAS_VALUE(result) ((result)>=USTRINGTRIE_FINAL_VALUE)
87
95#define USTRINGTRIE_HAS_NEXT(result) ((result)&1)
96
97#endif /* __USTRINGTRIE_H__ */
UStringTrieResult
Return values for BytesTrie::next(), UCharsTrie::next() and similar methods.
Definition ustringtrie.h:35
@ USTRINGTRIE_FINAL_VALUE
The input unit(s) continued a matching string and there is a value for the string so far.
Definition ustringtrie.h:58
@ USTRINGTRIE_NO_MATCH
The input unit(s) did not continue a matching string.
Definition ustringtrie.h:43
@ USTRINGTRIE_INTERMEDIATE_VALUE
The input unit(s) continued a matching string and there is a value for the string so far.
Definition ustringtrie.h:66
@ USTRINGTRIE_NO_VALUE
The input unit(s) continued a matching string but there is no value for the string so far.
Definition ustringtrie.h:50
Basic definitions for ICU, for both C and C++ APIs.