Welcome to mirror list, hosted at ThFree Co, Russian Federation.

postcodes_matcher.hpp « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7af92e984c8b64d7d153d2bb39514ea3105f3d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "indexer/string_slice.hpp"

#include "std/cstdint.hpp"
#include "std/string.hpp"

namespace search
{
/// If isPrefix is true returns true if some postcode starts with s.
/// If isPrefix is false returns true if s equals to some postcode.
bool LooksLikePostcode(StringSliceBase const & slice, bool isPrefix);
/// Splits s into tokens and call LooksLikePostcode(TokenSlice) on the result.
bool LooksLikePostcode(string const & s, bool isPrefix);

size_t GetMaxNumTokensInPostcode();
}  // namespace search