aboutsummaryrefslogtreecommitdiffstats
path: root/searchsummary/src/vespa/juniper/stringmap.h
blob: 36c3b6b8afcbf24cd02472a5f92324ebbe138016 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <vespa/vespalib/stllike/hash_map.h>

/** A map from strings to strings where all storage are maintained internally
 * a la perl assoc.arrays
 */

class Fast_StringMap
{
private:
    using Map = vespalib::hash_map<vespalib::string, vespalib::string>;
    Map  _backing;
public:
    void Insert(const char* key, const char* value);
    const char *Lookup(const char* key, const char* defval) const;
};