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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T23:45:49+00:00 2026-05-16T23:45:49+00:00

There’s no way to do something like this, in C++ is there? union {

  • 0

There’s no way to do something like this, in C++ is there?

union {
    {
        Scalar x, y;
    }
    Scalar v[2];
};

Where x == v[0] and y == v[1]?

  • 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-05-16T23:45:50+00:00Added an answer on May 16, 2026 at 11:45 pm

    I’ve used something like this before. I’m not sure its 100% OK by the standard, but it seems to be OK with any compilers I’ve needed to use it on.

    struct Vec2
    {
      float x;
      float y;
      float& operator[](int i) { return *(&x+i); }
    };
    

    You can add bounds checking etc to operator[] if you want ( you probably should want) and you can provide a const version of operator[] too.

    If you’re concerned about padding (and don’t want to add the appropriate platform specific bits to force the struct to be unpadded) then you can use:

    struct Vec2
    {
      float x;
      float y;
      float& operator[](int i) {
        assert(i>=0);
        assert(i<2);
        return (i==0)?x:y;
      }
      const float& operator[](int i) const {
        assert(i>=0);
        assert(i<2);
        return (i==0)?x:y;
      }
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There are things like f.call(...) f.apply(...) But then there's this (1, alert)('Zomg what is
There seems to be a similar question to this on here but with the
There are many conflicting statements around. What is the best way to get the
There is nothing like the 43rd day of your life spent tracking down issues
For some reason, after submitting a string like this Jack’s Spindle from a text
There are several shading languages available today like GLSL, HLSL, CG, which one to
There is this strange situation I'm fighting on. I have 3 pages, les call
There is previous little on the google on this subject other than people asking
There are a few ways to get class-like behavior in javascript, the most common
There must be a simple solution to this, but after 4 hours of browsing

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.