[tag:Haskell] extension and keyword used to define rank-n and existentially quantified types or to use scoped type variables
0
votes
1answer
88 views
Predicate with forall quantifier in haskell?
I want to write the function which accepts values of types, which has instances of multiparameter type class together with every type. Something like this (signature of test function is illegal):
...
1
vote
1answer
105 views
How does Z3 deal with forall proposition with uninterpreted functions in it?
Suppose we have two uninterpreted functions func1 and func2:
stuct_sort func1(struct_sort);
stuct_sort func2(struct_sort ,int).
And they have the relationship:
func2(p,n)=func1(p) if n==1
...
0
votes
2answers
170 views
Use forall instead of filter on List[A]
Am trying to determine whether or not to display an overtime game display flag in weekly game results report.
Database game results table has 3 columns (p4,p5,p6) that represent potential overtime ...
12
votes
1answer
432 views
What are these explicit “forall”s doing?
What is the purpose of the foralls in this code?
class Monad m where
(>>=) :: forall a b. m a -> (a -> m b) -> m b
(>>) :: forall a b. m a -> m b -> ...
1
vote
2answers
77 views
Increment ID in ParallelQuery.ForAll Method
I have a list of files that needs to be processed at the same time. I tried to use ForAll extension method of the ParallelQuery class. I don't the files to be processed in order so I used ForAll.
...
0
votes
2answers
297 views
Oracle: Bulk collect with DBMS_SQL defined array
It doesn't compile. What's wrong?
TYPE recEniFlussiHub IS RECORD
(
FLVO_ID dbms_sql.varchar2_table,
flh_id_messaggio dbms_sql.varchar2_table,
...
1
vote
2answers
2k views
Multiple SQL statements in FORALL loop
I want to insert in Different tables with only single FORALL Loop in oracle.but FORALL don't support it.any idea how can i do it??
create or replace PROCEDURE test IS
TYPE avl_web_details IS ...
0
votes
1answer
920 views
Pl/SQL Bulk Bind/ Faster Update Statements
I'm having problems using Bulk Bind in PL/SQL. Basically what I want is for a table(Component) to update its fieldvalue dependent on the Component_id and fieldname. All of these are passed in as ...
3
votes
1answer
551 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 ...
0
votes
1answer
224 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 ...
33
votes
5answers
3k 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 :: ...
3
votes
1answer
111 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 ...
1
vote
2answers
2k 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 ...
26
votes
4answers
952 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 ...
8
votes
2answers
725 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 ...
0
votes
3answers
1k 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 ...
2
votes
2answers
243 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)));
...
7
votes
1answer
767 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))]
...
57
votes
6answers
5k 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 ...