Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
2answers
334 views

Implementing C# language extensions

Using systems such as Parallel Linq, it's possible to split up execution of anonymous functions, queries, etc across multiple cores and threads within a single machine. I'd like the ability to extend ...
11
votes
1answer
266 views

What is __argvalue?

Also, there is one other thing that is an lvalue in VC#, though it's a language extension - __argvalue(). Source That was the only Google result for __argvalue. I tried it in LINQPad and it ...
9
votes
1answer
128 views

ViewPatterns and multiple calls in Haskell

I read this: http://hackage.haskell.org/trac/ghc/wiki/ViewPatterns I like the idea, want to use the extension. I however would like to make sure as to one thing: whether the view function is ...
9
votes
2answers
241 views

DatatypeContexts Deprecated in Latest GHC: Why?

I was just doing some Haskell development and I recompiled some old code on a new version of GHC: The Glorious Glasgow Haskell Compilation System, version 7.2.1 And when I did I received the ...
7
votes
4answers
256 views

Make All Types Constant by Default in C++

What is the simplest and least obtrusive way to indicate to the compiler, whether by means of compiler options, #defines, typedefs, or templates, that every time I say T, I really mean T const? I ...
6
votes
5answers
352 views

How to (computed) goto and longjmp in C++?

I don't usually code C++, but a strange comp sci friend of mine got sick of looking at my wonderful FORTRAN programs and challenged me to rewrite one of them in C++, since he likes my C++ codes ...
3
votes
5answers
224 views

What GNU C extensions are available that aren't trivial to implement in C99?

How come the Linux kernel can compile only with GCC? What GNU C extensions are really necessary for some projects and why?
3
votes
3answers
242 views

What C GNU-isms exist?

I was recently porting a project from GCC to clang(in which I fixed a number of C GNU-isms). This got me thinking: what C GNU-isms(extensions to the C language supported in GCC, which are not ...
0
votes
0answers
108 views

Microsoft c equivalent to gcc (c) extensions [closed]

A general list of equivalents of gcc c extensions(with feature descriptions and examples) (multi feature equivalent patterns would be also nice) please include any important differences and gotchas.
0
votes
2answers
145 views

defining integral static const in a class whose .h file is included in multiple cpp files

A.h class A { private: static const int b = 50; int c[b]; }; A.cpp #include "A.h" const int A::b; C.cpp #include "A.h" The compiler issues me a warning saying b is ...
0
votes
5answers
248 views

Extending Java language

I was wondering which is the best way to extend Java syntax and include other things. I mean something like Groovy or other langagues based upon Java, that keep backward compatibility The most ...