Open Chinese Convert
1.0.4
A project for conversion between Traditional and Simplified Chinese
|
Darts dictionary. More...
#include <DartsDict.hpp>
Public Member Functions | |
virtual size_t | KeyMaxLength () const |
Returns the length of the longest key in the dictionary. | |
virtual Optional< const DictEntry * > | Match (const char *word) const |
Matches a word exactly and returns the DictEntry or Optional::Null(). | |
virtual Optional< const DictEntry * > | MatchPrefix (const char *word) const |
Matches the longest matched prefix of a word. More... | |
virtual LexiconPtr | GetLexicon () const |
Returns all entries in the dictionary. | |
virtual void | SerializeToFile (FILE *fp) const |
Serializes the dictionary and writes in to a file. | |
Public Member Functions inherited from opencc::Dict | |
Optional< const DictEntry * > | Match (const string &word) const |
Matches a word exactly and returns the DictEntry or Optional::Null(). | |
Optional< const DictEntry * > | MatchPrefix (const string &word) const |
Matches the longest matched prefix of a word. | |
virtual vector< const DictEntry * > | MatchAllPrefixes (const char *word) const |
Returns all matched prefixes of a word, sorted by the length (desc). More... | |
vector< const DictEntry * > | MatchAllPrefixes (const string &word) const |
Returns all matched prefixes of a word, sorted by the length (desc). | |
Public Member Functions inherited from opencc::SerializableDict | |
virtual void | SerializeToFile (const string &fileName) const |
Serializes the dictionary and writes in to a file. | |
Static Public Member Functions | |
static DartsDictPtr | NewFromDict (const Dict &thatDict) |
Constructs a DartsDict from another dictionary. | |
static DartsDictPtr | NewFromFile (FILE *fp) |
Static Public Member Functions inherited from opencc::SerializableDict | |
template<typename DICT > | |
static bool | TryLoadFromFile (const string &fileName, std::shared_ptr< DICT > *dict) |
template<typename DICT > | |
static std::shared_ptr< DICT > | NewFromFile (const string &fileName) |
Darts dictionary.
Matches the longest matched prefix of a word.
For example given a dictionary having "a", "an", "b", "ba", "ban", "bana", the longest prefix of "banana" matched is "bana".
Reimplemented from opencc::Dict.