3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-14 12:58:44 +00:00
z3/src/util/dictionary.h

24 lines
300 B
C++

/*++
Copyright (c) 2011 Microsoft Corporation
Module Name:
dictionary.h
Abstract:
Author:
Leonardo (leonardo) 2011-03-01
Notes:
--*/
#pragma once
#include "util/map.h"
#include "util/symbol.h"
template<typename T>
using dictionary = map<symbol, T, symbol_hash_proc, symbol_eq_proc>;