Using the required qualified access attribute in F# to avoid name clashes

It can happen that a number of different modules have the same function name but have a different implementation. Here’s a module with a single function called “sum”:

module Top

let sum x y = x + y

If “sum” is likely to reoccur as a function name then it’s possible to require that the caller call sum by its fully qualified name, i.e. Top.sum, using the RequireQualifiedAccessAttribute attribute as follows:

[<RequireQualifiedAccessAttribute>]
module Top

let sum x y = x + y

Here’s how to call the sum function from a different part of the application:

let qualifSum = Top.sum 10 20

If we try to reference the Top module with the “open” statement…

open Top

…then we’ll get a compiler error:

This declaration opens the module ‘Top’, which is marked as ‘RequireQualifiedAccess’. Adjust your code to use qualified references to the elements of the module instead, e.g. ‘List.map’ instead of ‘map’. This change will ensure that your code is robust as new constructs are added to libraries.

View all F# related articles here.

Advertisement

About Andras Nemes
I'm a .NET/Java developer living and working in Stockholm, Sweden.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

Elliot Balynn's Blog

A directory of wonderful thoughts

Software Engineering

Web development

Disparate Opinions

Various tidbits

chsakell's Blog

WEB APPLICATION DEVELOPMENT TUTORIALS WITH OPEN-SOURCE PROJECTS

Once Upon a Camayoc

Bite-size insight on Cyber Security for the not too technical.

%d bloggers like this: