The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
4answers
492 views

VB.NET Brackets () {} [] <>

Can someone please fill in the blanks for me, including a brief description of use and perhaps a code snippet? I'm well aware of the top two in particular, but a little hazy on the last one ...
0
votes
1answer
184 views

How to fix the 'pre' tag's issues with left angle brackets '<'?

I hear this is a long-standing issue with the 'pre' tags — when you are displaying a code block inside <pre> tags, you need to escape all instances of < (left angle brackets). Is there an ...
1
vote
1answer
93 views

why place the ending right angle-bracket of an html tag beside the opening left angle-bracket of a new html tag?

I seen a hack written using this type of code structure where the ending tag right 'angle bracket' is placed at the beginning of a new left 'angle-bracket' tag opening, but I can't remember why it was ...
23
votes
2answers
309 views

How is `>>>` lexed in C++0x?

>>> is lexed as >> >. But what happens if the first > closes a template argument list, should the result be equivalent to > > > or > >>? It does matter in the ...