The forall tag has no wiki summary.
25
votes
5answers
1k views
forall in Scala
As shown below, in Haskell, it's possible to store in a list values with heterogeneous types with certain context bounds on them:
data ShowBox = forall s. Show s => ShowBox s
heteroList :: ...
24
votes
5answers
2k views
What does the `forall` keyword in Haskell/GHC do?
I'm beginning to understand how the forall keyword is used in so-called "existential types" like this:
data ShowBox = forall s. Show s => SB s
This is only a subset, however, of how forall is ...
23
votes
4answers
614 views
what does “exists” mean in Haskell type system?
I'm struggling to understand the exists keyword in relation to Haskell type system. As far as I know, there is no such keyword in Haskell by default, but:
There are extensions which add them, in ...
7
votes
2answers
375 views
Code contracts, forall and custom enumerable
I am using C# 4.0 and Code Contracts
and i have my own custom GameRoomCollection : IEnumerable<GameRoom>.
I want to ensure, that no instances of gameroomcollection will ever contain a null ...
6
votes
1answer
461 views
Using Contract.ForAll in Code Contracts
Okay, I have yet another Code Contracts question. I have a contract on an interface method that looks like this (other methods omitted for clarity):
[ContractClassFor(typeof(IUnboundTagGroup))]
...
3
votes
1answer
74 views
How to add an extra project into existing Android operating system source?
I am working on kernel development in AOSP, and the kernel repository that I work on is not a part of the operating system. It has an individual git repository. So when I try to push all AOSP sources ...
3
votes
1answer
95 views
How to know whether a module requires RankNTypes or ExistentialTypes if it is not explicitly mentioned?
In the source of the memocombinators package, for example, no LANGUAGE pragma is explicitly mentioned and when trying to import it I get errors because the extension which supports the explicit forall ...
2
votes
2answers
177 views
PLINQ update failed
sorry for my English. So, here is my question
I'm trying to update DataTable by PLINQ
Here is my code
DataTable table = new DataTable();
table.Columns.Add(new DataColumn("val", typeof(decimal)));
...
1
vote
2answers
451 views
When running a forall loop in PL/SQL, is it necessary to commit afterwards?
Does a PL/SQL forall loop commit automatically at certain intervals, or do I need to commit after the loop?
Oracle 10g and 11g
FORALL i IN x.FIRST .. x.LAST
delete from table where 1=1;
I've ...
0
votes
1answer
93 views
Choosing all possible options from List in Prolog
So I have to write different procedures that will help me solve the farmer-wolf-goat-cabbage-fertilizer puzzle. For those of you that don't know it, it involves a farmer having to cross from the North ...
0
votes
3answers
532 views
How can I ensure that my Fortran FORALL construct is being parallelized?
I've been given a 2D matrix representing temperature points on the surface of a metal plate. The edges of the matrix (plate) are held constant at 20 degrees C and there is a constant heat source of ...