In F# what does the >> operator mean?

后端 未结 5 1024
悲&欢浪女
悲&欢浪女 2020-12-08 09:20

I noticed in some code in this sample that contained the >> operator:

let printTree =
  tree >> Seq.iter (Seq.fold (+) \"\" >> printfn \"%s\")
         


        
5条回答
  •  渐次进展
    2020-12-08 10:09

    According to F# Symbol and Operator Reference it is Forward Function Composition operator.

提交回复
热议问题