0
我想執行功能流水線,但我不能讓它工作的多個函數參數,其中一個參數是通用列表。功能流水線與多個參數,其中一個參數是一個通用的列表
let function1(list:System.Collections.Generic.List<Person>, x:int) =
// does stuff returns a new list but for demo purposes I will just return list passed in
list
let function2(list:System.Collections.Generic.List<Person>, x:int) =
// does stuff returns a new list but for demo purposes I will just return list passed in
list
然後我嘗試創建一個管道函數,但它不會做了以下工作:
myPipelinedFunction initialPersonList = function1 10 |> function2 300
編譯器與「抱怨預期的表達,具有輸入「a * INT但這裏有類型int「
任何明顯的,我做錯了什麼? 任何幫助非常感謝......
感謝您的幫助Tomas,也改爲使用seq代替 –
bstack
2014-11-25 14:01:22