Tagged Questions
The mutual-recursion tag has no wiki summary.
10
votes
2answers
554 views
How to have two methods calling each other?
I'm a bit confused as to how to get two method to call each other (i.e., have A() call B() and B() call A()). It seems that F# only 'sees' the method after it's been encountered in code, so if it ...
7
votes
3answers
749 views
F# forward type declarations
I stumbled across this problem in F#. Suppose, I want to declare two types that reference each other:
type firstType =
| T1 of secondType
//................
type secondType =
| T1 ...
6
votes
3answers
178 views
Can discriminated unions refer to each other?
I'm building an expression tree using discriminated unions. The below code:
type IntExpression =
| TrueIsOne of BoolExpression
type BoolExpression =
| LessThan of IntExpression * ...
5
votes
1answer
181 views
F#: is mutual recursion between types and functions possible?
I can use the and keyword to set up mutually recursive function definitions. I can also use and for mutually recursive types, but what if there is a mutually recursive relationship between a type and ...
5
votes
3answers
275 views
Problem determining how to order F# types due to circular references
I have some types that extend a common type, and these are my models.
I then have DAO types for each model type for CRUD operations.
I now have a need for a function that will allow me to find an id ...
4
votes
2answers
164 views
Why the requirement for signatures in mutually recursive modules in OCaml?
When using mutually recursive module definitions in OCaml, it's necessary to give signatures, even in the .ml file. This is an annoyance where I also want to expose a given interface from the .mli, as ...
4
votes
2answers
122 views
How can I reorder these F# functions to make sense?
I thought I'd be getting along alright with F# since I'm decent at Haskell, but I feel like I'm being stumped by dead simple issues. I have some parsing code for a simple JSON parser, like this:
let ...
4
votes
3answers
297 views
F#: Mutually recursive functions [closed]
Possible Duplicate:
[F#] How to have two methods calling each other?
Hello all,
I Have a scenario where I have two functions that would benefit from being mutually recursive but I'm not ...
4
votes
3answers
339 views
What is the standard way to optimise mutual recursion in F#/Scala?
These languages do not support mutually recursive functions optimization 'natively', so I guess it must be trampoline or.. heh.. rewriting as a loop) Do I miss something?
UPDATE: It seems that I did ...
4
votes
3answers
442 views
What is this kind of mutual “recursion” called?
My issue is with a certain style of code that very much resembles recursion, but isn't quite that. Recursion is, to quote Wikipedia, "a method of defining functions in which the function being defined ...
3
votes
3answers
153 views
Unable to understand a mutual recursion
I am reading Programming In Haskell, in the 8th chapter, the author gives an example of writing parsers.
The full source is here: http://www.cs.nott.ac.uk/~gmh/Parsing.lhs
I can't understand the ...
3
votes
1answer
149 views
Organise my mutual recursive types
Is it possible to have mutual recursive types ([<Struct>]) spread across different files? The types are directly under a namespace.
My solution is to put them in one big file and use type ... ...
3
votes
4answers
163 views
Is it possible to define types that depend on each other and are defined in separated files?
I am trying to implement a library with extended parsing capabilities. I decided that I will use fsyacc because I knew it from the university. Unfortunately I encountered following problem.
I ...
3
votes
3answers
224 views
How does one resolve F# Type Reference Errors?
I've been through my books, and I've googled until I've ran out of search terms, yet I still can't find an example or answer to this problem:
The following code does not compile because the type ...
2
votes
2answers
108 views
OCaml: Declaring a function before defining it
Is there a way to declare a function before defining it in OCaml? I'm using an OCaml interpreter.
I have two functions:
let myFunctionA =
(* some stuff here..... *) myFunctionB (*some stuff *)
...
2
votes
1answer
152 views
Mutual Recursion Question
How do I change two functions that are Mutual Recursive to each other to make them into a linear recursion? Do I have to have both the methods in a single method?
2
votes
2answers
142 views
Fixed point combinator for mutually recursive functions?
Is there a fixed point combinator for creating tuples of mutually recursive functions? I.e. I'm looking for something like the Y-Combinator but which takes multiple "recursive"* functions, and will ...
2
votes
3answers
330 views
Mutually recursive evaluator in Haskell
Update: I've added an answer that describes my final solution (hint: the single Expr data type wasn't sufficient).
I'm writing an evaluator for a little expression language, but I'm stuck on the ...
1
vote
4answers
376 views
Mutually recursive classes
How do I implement mutually recursive classes in C++? Something like:
/*
* Recursion.h
*
*/
#ifndef RECURSION_H_
#define RECURSION_H_
class Class1
{
Class2* Class2_ptr;
public:
void ...
0
votes
3answers
89 views
Can anyone explain this output to me?
So I was playing around with some thought experiments where I imagined what would happen when two functions became mutually recursive. One such one was what if both functions could potentially fall ...
0
votes
3answers
140 views
simple javascript function definition problem
function First () {
setTimeout("Second()", 50)
};
function Second () { //I'm very confident this conditional works fine
if (document.getElementsByClassName("l")[0].href ==
...