What’s an efficient or syntactically simple way to get and set the high order part of an integer?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
It’s the same as in C/C++:
EDIT: Because I’m in a good mood, here you go. Just remember, immutable types are immutable! The ‘set’ functions need to be assigned to something.
EDIT 2: On second thoughts, if you really need to do this and don’t want the syntax everywhere, use Michael’s solution. +1 to him for showing me something new.