I have Array of Array of strings. I need to flatten them and I use:
Array.fold (fun acc el -> Array.append acc el) [||] arr2d
Lint says me that:
"If Array.append has not mutable arguments partially applied then the lambda can be removed"
What does it mean? How can I remove lambda?