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: da5f9c8f2e3b420bbb6877afe538bb893580a818 (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 <cstdint>
#include <string>

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(std::string const & s, bool isPrefix);

size_t GetMaxNumTokensInPostcode();
}  // namespace search