In F# interactive, I can use String.Join("+", ["a"; "b"]) successfully, but

["a"; "b"] |> String.Join "+"

produces an error:

Script1.fsx(79,15): error FS0001: This expression was expected to have type
    string list -> 'a    
but here has type
    string

How do I use String.Join passing a collection using pipeline?

P.S. The same problem is with lines |> File.WriteAllLines "filename.txt"

link|improve this question

59% accept rate
feedback

1 Answer

up vote 9 down vote accepted

String.Join is a .NET method. When using a .NET method, F# views it as a function that takes a tuple as an argument (when calling it you write parameters as f(a, b)). The |> operator can be used with functions that use the curried form of parameters (and can be called by writing f a b).

You can use a function String.concat from the F# library (which does the same thing) instead:

["a"; "b"] |> String.concat "+"

EDIT File.WriteAllLines is the same case. If you want to use it as part of a pipeline, you can write an F# function that wraps the call:

let writeAllLines file (lines:seq<string>) =
  System.IO.File.WriteAllLines(file, lines)

In general, you can use |> with .NET methods only if you want to write all arguments on the left side of the operator. You can for example write:

("+", ["a"; "b"]) |> System.String.Join

... but that doesn't fit with the usual use of pipeline operator. When working with .NET API, it is usually better to use a C#-like style of programming (without pipelining), because pipeline works well only with functional libraries.

link|improve this answer
Thanks! By the way, any luck with File.WriteAllLines? – modosansreves Nov 25 '10 at 15:39
or ... any .Net method won't work with |>? – modosansreves Nov 25 '10 at 15:40
@modosansreves: I added answers to your other questions. – Tomas Petricek Nov 25 '10 at 15:48
1  
@cfern: I think the original works too, because there is an overload taking seq<string>. – Tomas Petricek Nov 25 '10 at 17:11
1  
@Tomas Petricek: the IEnumerable overload is only present in .Net 4 (which explains why it didn't work for me in VS2008). I learned something new today. :) – cfern Nov 26 '10 at 8:35
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.