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 8898133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T00:32:02+00:00 2026-06-15T00:32:02+00:00

What do I have to write for YYY, ZZZ in order to set iterator_type

  • 0

What do I have to write for YYY, ZZZ in order to set iterator_type to the iterator type associated with T ? It should work in Visual Studio C++ 2010, if possible (but general standard solution is ok as well).

template<class T>
struct iterator_for {
    typedef YYY<T>::ZZZ type;
}

Hence I want:

iterator_for<double[3]>::type is double *
iterator_for<std::string>::type is std::string::iterator
iterator_for<char[12]>::type is char *

etc.

I have a templated wrapper class Wrapper<T> storing something iterable (i.e. a container or string or an array) and I want to define a function returning an iterator pointing into the wrapped object. For that purpose, I need to be able to speak about the iterator type corresponding to T. For an array, the corresponding iterator would be a pointer, and for a string that is whatever string defines to be its iterator type.

  • 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-15T00:32:04+00:00Added an answer on June 15, 2026 at 12:32 am

    If you just want to separate containers from pointers, you can try this

    template<class T>
    struct iterator_for 
    {
        typedef typename T::iterator  type;
    };
    
    template<class T>
    struct iterator_for<T*>
    {
        typedef T*  type;
    };
    
    template<class T, std::size_t N>
    struct iterator_for<T (&)[N]>
    {
        typedef T*  type;
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have write this code but it does work only if I am already
I have to write 3 functions which accepts a parameter of BaseClass type and
I have write this code for displaying some set of colors from panel: import
I have write a program which is suppose the set the application property. I
If I have: Write-Host [$(Get-Date -displayhint time)] backup starting... I get: [02/17/2010 1:26:12pm] backup
Many of you guys agree that the developers should not have write access to
I have write one method: -(id)postAndParseJson:(NSMutableDictionary *)theDictionary action:(NSString *)action type:(NSString *)myType { NSString *newJSON
I have write my own view Bar, which extends LinearLayout . My bar has
I am trying to check if I have write access to a specific key
I'm working on an application so i have write an dll which contain a

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.