Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9276229
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T16:47:40+00:00 2026-06-18T16:47:40+00:00

So the library I use has an enum (say it’s named LibEnum ). I

  • 0

So the library I use has an enum (say it’s named LibEnum). I need to have an std::unordered_set of LibEnum, but I get compilation error that there is no specialized std::hash for it. I could easily write it and just return the number of value (first element is 0, second 1 etc), but where exactly I should put this specialization and how should it look like? I can’t modify the library sources.

  enum LibEnum { A, B, C, D};
  std::unordered_set <LibEnum> mySet;
  //need std::hash for LibEnum
  //how should it look like?
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T16:47:43+00:00Added an answer on June 18, 2026 at 4:47 pm

    You can just specialise std::hash for your type:

    namespace std {
        template <>
        struct hash<FullyQualified::LibEnum> {
            size_t operator ()(FullyQualified::LibEnum value) const {
                return static_cast<size_t>(value);
            }
        };
    }
    

    Alternatively, you can define a hash type where ever you like and just provide it as the additional template argument when instantiating std::unordered_map<FooEnum>:

    // Anywhere in your code prior to usage:
    
    struct myhash {
        std::size_t operator ()(LibEnum value) const {
            return static_cast<std::size_t>(value);
        }
    };
    
    // Usage:
    
    std::unordered_map<LibEnum, T, myhash> some_hash;
    

    Neither methods require you to modify the library.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a c-library which I use in gcc. The library has the extension
In my library I use HostingEnvironment.MapPath for my web application. But I need to
I'm developing a library for use in other apps and this library has lots
I'm trying to use a feature of the Microsoft WinHttp library that has been
I have been searching for a pure Java SSH library to use for a
Here's my situation. I have a library that has a set of enums that
Amazon Cloud Services (AWS) has provided the ready to use Library to make calls
I have been looking for a graphing library to use in an upcoming web
So I have been struggling with finding a decent C# library to use with
I have the following NancyFX unit test. I use the Shouldly assertion library to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.