Units of measure in F#

A very interesting feature of F# – besides many others – is that we can assign a unit of measure to a variable value. These units of measure are located in the Microsoft.FSharp.Data.UnitSystems.SI.UnitNames namespace. As the namespace suggests the units are taken from the international system of units.

They are surrounded with angled brackets in code. Here’s an example:


open Microsoft.FSharp.Data.UnitSystems.SI.UnitNames
let meterValue = 100
[/sourceoode]

We can easily define our own units of measure that are not part of the namespace. The following example shows the “pound” type and how we can convert it to kilos:


namespace units

module Units =
open Microsoft.FSharp.Data.UnitSystems.SI.UnitNames

[]
type pound =
static member toKilos = 0.453592

let asKilos pounds:float = pounds * pound.toKilos

.
.
.
let converted = Units.asKilos 1.
[/sourceoode]

“converted” will be 0.453592 as expected.

View all F# related articles here.

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

Leave a comment

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

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