Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Give the most general types of the following functions. Again, try figuring each out yourself, but you can check yourself with OCaml. a) let f1
Give the most general types of the following functions. Again, try figuring each out yourself, but you can check yourself with OCaml. a) let f1 (x, y) (y, x) (Hint: you may need two type variables) b) let f2 x y = [[x]; y] c) let f3 x y z = [x::z; y::z] d) let f4 x y [x; x + y) e) let rec f5 x = match x with [] -> [] | x::t -> [x; x]::(f5 t)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started