The language-extension tag has no wiki summary.
11
votes
1answer
178 views
Why isn't GeneralizedNewtypeDeriving a Safe Haskell?
From GHC's manual, Section Safe Language:
Module boundary control — Haskell code compiled using the safe language is guaranteed to only access symbols that are publicly available to it through ...
1
vote
0answers
46 views
Haskell TransformListComp extension
I read this guide about haskell language extensions and was somewhat confused by the TransformListComp explanation. I tried to rewrite all the TransformListComp expression without the sugar but I'm ...
7
votes
1answer
104 views
What language extensions does the MTL library require?
I'm trying to understand monad transformers by implementing my own tiny library based on the designs of existing ones.
What I'm stuck on is the language extensions. In MonadError, the only ...
0
votes
2answers
49 views
JavaScript language extensions with function calls lacking parenthesis - are they possible?
Is it possible, by any means, to do something like this:
function A() {
var Loaded = 'loaded';
raise Loaded;
}
function A_raise(evt) {
console.log(evt);
}
A.prototype.constructor = A;
...
26
votes
1answer
298 views
Can using UndecidableInstances pragma locally have global consequences on compilation termination?
Suppose a Haskell library designer decides to use UndecidableInstances for some reason. The library compiles fine. Now suppose some program uses the library (like defines some instances of its type ...
0
votes
1answer
220 views
Is it possible to write windows and directx code with language extensions off?
I've got extensions off on my project but have to turn them on for any cpp file that includes directx or windows headers.
If I turn extensions off on those cpp files it won't compile. Is there a ...
8
votes
1answer
136 views
Breaking Data.Set integrity without GeneralizedNewtypeDeriving
The code below uses an unsafe GeneralizedNewtypeDeriving extension to break Data.Set by inserting different elements with different Ord instances:
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
import ...
10
votes
1answer
365 views
How do I enable language extensions from within GHCi?
I'm trying to enable XRankNTypes in GHCi. How do I do this?
35
votes
1answer
2k views
Which Haskell (GHC) extensions should users use/avoid?
I have had the experience a few times now of having GHC tell me to use an extension, only to discover that when in using that extension I have made code far more complex when a simple refactor would ...
6
votes
1answer
107 views
Convention for specifying extensions in cabalized project
For any .hs file, you can specify the language extensions you rely on like so:
{-# LANGUAGE Foo, Bar, Baz #-}
A cabalized project can also specify language extensions on a per-project basis in the ...
10
votes
1answer
213 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 ...
16
votes
2answers
543 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 ...
6
votes
7answers
884 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 ...
23
votes
2answers
1k 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 ...
70
votes
4answers
2k views
What's this C++ syntax that puts a brace-surrounded block where an expression is expected?
I came across this weird C++ program.
#include <iostream>
using namespace std;
int main()
{
int a = ({int x; cin >> x; x;});
cout << a;
}
Can anyone explain what is going on? ...
0
votes
0answers
176 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
488 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 ...
9
votes
4answers
409 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 ...
3
votes
5answers
333 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
303 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 ...
3
votes
6answers
675 views
Extending Java language [closed]
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 ...
11
votes
1answer
297 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 ...