Closed GoogleCodeExporter closed 9 years ago
Fixed, for example (there not always what I expected -- nested types not
included in generic type definitions, and generic arrays are given as obj --
but I believe correct:
> typedefof<int -> (int * int)>.FSharpName;;
val it : string = "T -> TResult"
> typedefof<int * int>.FSharpName;;
val it : string = "T1 * T2"
> typedefof<list<_>>.FSharpName;;
val it : string = "list<T>"
> typedefof<seq<list<_>>>.FSharpName;;
val it : string = "seq<T>"
> typedefof<_[]>.FSharpName;;
val it : string = "obj[]"
Original comment by stephen....@gmail.com
on 19 Feb 2011 at 5:29
Original comment by stephen....@gmail.com
on 17 Mar 2011 at 4:13
Original issue reported on code.google.com by
stephen....@gmail.com
on 17 Feb 2011 at 3:48