Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
What does the >?= operator mean?

I was wondering what is the <?= operator I keep seeing in C++ code. It doesn't compile on my system, but I'm sure it is correct. It's used like this:a <?= something;

Also, what would I need to do to be able to compile it?

EDIT POST:

Please see this source code (it is a solution of the problem Square Fields (Problem B) of the winner of a practice Google Code Jam contest -- see here). I saw the same pattern of characters in some other submissions too.

#include<cstdio>
#include<algorithm>
#include<iostream>
#include<sstream>
#include<string>
#include<vector>
#include<set>
#include<map>
#include<numeric>
#include<cmath> using namespace std;

#define ALL(t) t.begin(),t.end()
#define FOR(i,n) for (int i=0; i<(int)(n); i++)
#define FOREACH(i,t) for (typeof(t.begin()) i=t.begin(); i!=t.end(); i++) typedef vector<int> vi; typedef long long int64;

int t[15][1<<15]; int main() {   int N;cin>>N;   for(int c=1;c<=N;c++){
    int n,k,x[30],y[30];
    cin>>n>>k;
    FOR(i,n)cin>>x[i]>>y[i];
    FOR(take,1<<n)if(take){
      int minx=1000000,maxx=-1,miny=1000000,maxy=-1;
      FOR(i,n)if(take&1<<i)minx<?=x[i],maxx>?=x[i],miny<?=y[i],maxy>?=y[i];
      t[1][take]=(maxx-minx)>?(maxy-miny); //      cout<<take<<" "<<t[1][take]<<endl;
    }
    for(int kk=2;kk<=k;kk++)FOR(take,1<<n){
      t[kk][take]=t[kk-1][take];
      for(int take2=take;take2;take2=(take2-1)&take)
        t[kk][take]<?=t[kk-1][take-take2]>?t[1][take2];
    }
    cout<<"Case #"<<c<<": "<<t[k][(1<<n)-1]<<endl;   }   return 0; }
share|improve this question
3  
Please show an example. – SLaks May 15 '11 at 3:46
You are mistaken, there is no such operator. Perhaps you saw something similar and got the order mixed up. – Seth Carnegie May 15 '11 at 3:47
3  
It has to be a typo, and can't possibly compile on a reasonably-conforming C++ compiler. It's not a trigraph nor a digraph, and I have never seen a <?= in C++ code ever in the years I've done C++ programming. Can you provide more context? (Like say, a code snippet you found that has this?) It's possible that the code you're looking at isn't actually C++ at all. – In silico May 15 '11 at 3:54
1  
It doesn't compile on my system, but I'm sure it is correct. Isn't the fact that it doesn't compile clue enough that it isn't correct? Learn to trust your compiler - it's going to be right about these things more often than you... :) – Mac May 15 '11 at 3:57
1  
Just found out it's an extension present in older versions of the GCC C++ compiler, which is probably why I've never seen such an operator. Closed as a duplicate. – In silico May 15 '11 at 4:08
show 5 more comments

marked as duplicate by In silico, Nawaz, Ben Voigt, Mike DeSimone, Omnifarious May 15 '11 at 5:07

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 4 down vote accepted

EDIT:

Its an extension in older versions of GCC. See this :

What does the >?= operator mean?

But then the extensions are <? and >? . I still don't see <?=.

6.1 Minimum and Maximum Operators in C++


EARLIER POST:

I assure you, there is no such operator in C++. Its certainly a mistyping.

The programmer most likely wanted to type either <= or ?:

Or maybe you mistyped it here when in fact you intended to type a digraph or trigraph (but what you've typed is neither digraph nor trigraph).

As you yourself said it doesn't compile on my system. How would it? Its a typo.

share|improve this answer
1  
It appears that a <?= b means a = min(a, b), i.e. it's the assignment form of the <? operator. – hammar May 15 '11 at 4:28
@hammar: but a<?b returns minimum, anyway. So assignment in <?= doesn't make any difference. – Nawaz May 15 '11 at 4:31
<? is to <?= just as + is to +=. So it not only computes the minimum but also assigns the result to a. – hammar May 15 '11 at 4:33
@hammar: ohh... makes sense now. – Nawaz May 15 '11 at 4:33
Thanks @hammar. – Grega Kešpret May 15 '11 at 5:15

I was going to say it was a trigraph operator, but it isn't even that. It's probably a typo.

share|improve this answer

Is it possible that you are getting mixed up with this operator: a ? b : c. Otherwise, please post a link to some of the code that you've seen it in, because it sure ain't normal c++. It could be another language, but googling it returns literally nothing, so I don't think that's the answer.

share|improve this answer
I posted an example code, but since my question was already answered. – Grega Kešpret May 15 '11 at 5:16

Not the answer you're looking for? Browse other questions tagged or ask your own question.