Created
October 19, 2017 03:36
-
-
Save cararemixed/9c27ce6e7b63c1edd188a1222b79d51d to your computer and use it in GitHub Desktop.
Test script for Continuous IDE bug with recursive generic types
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type AsyncSeq<'a> = Async<AsyncInner<'a>> | |
and AsyncInner<'a> = | |
| AsyncSeqNil | |
| AsyncSeqCons of 'a * AsyncSeq<'a> | |
let rec fold<'a, 'b> (f:'b -> 'a -> 'b) (s:'b) (xs:AsyncSeq<'a>) : Async<'b> = async { | |
let! x = xs | |
match x with | |
| AsyncSeqNil -> return s | |
| AsyncSeqCons(head, rest) -> return! fold f (f s head) rest | |
} | |
let rec unfold<'a, 'b> (f:'b -> Async<('a * 'b) option>) (s:'b) : AsyncSeq<'a> = async { | |
let! x = f s | |
match x with | |
| None -> return AsyncSeqNil | |
| Some(v, s') -> return (AsyncSeqCons(v, unfold f s')) | |
} | |
let zeroToNine : AsyncSeq<int> = | |
unfold | |
(fun i -> async { | |
if i < 10 | |
then return (Some(i, i+1)) | |
else return None | |
}) | |
0 | |
let sum : int = | |
fold (fun s x -> s+x) 0 zeroToNine | |
|> Async.RunSynchronously | |
printfn "sum = %i" sum |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A trivial implementation... Continuous, at the time of this writing has an issue with the 'a type parameter on AsyncSeq. Replacing it with a monomorphic type seems to work but defeats the purpose of such a structure pretty quickly.