destructurama / fsharp

Native support for destructuring F# types when logging to Serilog.
Apache License 2.0
38 stars 10 forks source link

Add support for F# lists. #1

Closed jvrdev closed 9 years ago

jvrdev commented 9 years ago

It forces interpreting lists as sequences instead of discriminated unions of the shape type List<'T> = | ( [] ) | ( :: ) of Head: 'T * Tail: 'T list

nblumhardt commented 9 years ago

Thank you, much appreciated.