top | item 12295664

Adventures in F# Performance – Benchmarking the F# Core Library

7 points| cloudroutine | 9 years ago |jackmott.github.io | reply

1 comment

order
[+] kristianp|9 years ago|reply
The use of the wildcard as a type parameter seems odd here. Why not use (array: 'a[]) for example? I'm guessing its a quirk of the F# syntax?

    let filter f (array: _[]) = 
        checkNonNull "array" array
        let res = List<_>() // ResizeArray
        for i = 0 to array.Length - 1 do 
            let x = array.[i] 
            if f x then res.Add(x)
        res.ToArray()