Skip to content

Instantly share code, notes, and snippets.

@ZimmerD
ZimmerD / proposedSolution.fsx
Created June 25, 2020 07:41
FSharpAux.IO.SeqIO.Seq.CSV: Incorrect collection formatting
open BioFSharp
open FSharpAux.IO.SeqIO
///Returns a function to format a given value as string
let inline stringFunction (separator: string) (flatten: bool) (input: 'a) =
let o = box input
match o with
//match string first so that it doesn't get treated as a char array
| :? string ->
fun (x: obj) ->