What is this type?

Viewed 121

Haskell novice here. I know from type classes that =>means "in the context of". Yet, I can't read the following type, found in module Statistics.Sample

(Vector v (Double, Double), Vector v Double) => v (Double, Double) -> Double

What constraints are being applied on v left of => ?

1 Answers
Related