vote up 1 vote down star

Hi,

  • Is there an "official" naming / casing convention for F#?

I'm always in doubt of using C# style or not:

Class.MyFunctionName or Module.my_function_name

In F# you're meant to mix BCL classes and F# library ones: they have different casing and the code looks very ugly.

Thanks

flag

5 Answers

vote up 1 vote down check

Yes, there is confusion, because F# has morphed from OCaml to .Net over the years. Basically, the naming conventions are a "breaking change" - old code is inconsistent with new code (but will still compile).

However, the May 2009 CTP has settled the issue.

The Release Notes say...

Standard Library Naming Conventions

The naming conventions adopted for the F# library are as follows:

o All .NET and F# OO code uses PascalCase according to existing .NET guidelines

o The F# functional programming operators such as List.map are for use in F# internal implementation code. This kind of code uses camelCase for operator names

o Underscores should not be used except for the Module.to_type and Module.of_type pattern.

So, your question...

Class.MyFunctionName or Module.my_function_name

The answer is

Class.MyFunctionName and Module.MyFunctionName

(applying rule 1 above).

There is still some confusion by comparision with the F# programming operators (eg. List.averageBy), but production F# code should use CamelCase, and thus look like everyone else's .Net code. If in doubt, check the sample code for the CTP.

(I personally like_the_caml_style, but I'll have to GetOverThat)

link|flag
vote up 1 vote down

From what I've seen from hubfs.com and other sources, its a mix from .net and OCaml.

I hope they switch to either one and not have two different conventions and being Microsoft i am sure they will go with the dot net style.

link|flag
vote up 3 vote down

Anything official: I think "not quite yet", but whenever VS 2010 reaches Beta1 you'll probably see the F# library in its nearly-final form, and there will be a number of renamings relative to the CTP. F# will probably always be a little more schizophrenic than its older .NET cousins, given its history.

link|flag
Hi Brian, what do you mean by "F# will probably always be a little more schizophrenic than its older .NET cousins, given its history"? Thanks. – Joan Venge Mar 25 at 17:28
2  
History: F# is derived from OCaml, and F# still retains a core that is very largely source-compatible with OCaml. But OCaml has different naming convention than .Net. So F# is pulled in two different directions. – Brian Mar 25 at 17:59
vote up 0 vote down

Not sure there is any real solution. It seems that perhaps OCaml-ish code might retain some of its naming, i.e., lowercase module methods, whereas OO members will go .NET style.

link|flag
vote up 1 vote down

My understanding and current usage is that module/static functions have lower case, and 'instance' functions have upper case.

Edit not an answer to this question, but related: F# Formatting conventions by Don Syme

link|flag

Your Answer

Get an OpenID
or

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