Labeling function parameters in ReasonML

Just add a `~` to the variable name!

A common source of confusion for many people writing JavaScript applications are function arguments. Unless you use the object as a parameter pattern, it can get really difficult, really fast to remember how many arguments your function accepts and what order they should be passed in.

The solution

A great solution for this in ReasonML applications is their easy syntax for labeling arguments. This allows you to pass arguments in any order and be more explicit with your function calling.

And now the same example, but with the arguments reversed.

Using aliases

If you have long names for your label arguments, you can use aliases to make them easier to read inside of your function's logic.

Note: when calling the function, you'll need to to use the full name of the argument. The alias can only be used inside the function logic.
let puppyName = (~firstNameOfPuppy as first, ~lastNameOfPuppy as last) =>
  {j|$first $last|j};

Js.log(puppyName(~lastNameOfPuppy="Max", ~firstNameOfPuppy="Jax"));

/* "Jax Max" */

Making labeled arguments optional

By default, ReasonML requires labeled arguments to be passed when calling the function. Adding a simple =? to the end of a labeled argument in ReasonML, however, makes it optional.

Note: one caveat of optional arguments are that they'll need to positioned before any required ones (as shown below) or you will get an error during compilation.
let puppyName = (~lastName=?, ~firstName) =>
  {j|$firstName $lastName|j};

Js.log(puppyName(~firstName="Jax"));

/* "Jax Max" */

Explicitly adding types

Just as you can with non-labeled arguments, you can easily pass a type to a labeled argument in ReasonML with the same : syntax.

let puppyName = (~lastName: string, ~firstName: string) =>
  {j|$firstName $lastName|j};

Js.log(puppyName(~firstName="Jax"));

/* "Jax Max" */

Adding types to optional arguments

A common pitfall for newcomers to ReasonML is passing in optional arguments with their types like this:

let puppyName = (~lastName: string=?, ~firstName: string) =>
  {j|$firstName $lastName|j};

Js.log(puppyName(~firstName="Jax"));

/* Compilation error!
 This pattern matches values of type
  string
but a pattern was expected which matches values of type
  'a option */

To fix this, you'll need to specify that the type is optional too, by wrapping the type in an option() statement.

let puppyName = (~lastName: option(string)=?, ~firstName: string) =>
  {j|$firstName $lastName|j};

Js.log(puppyName(~firstName="Jax"));

/* "Jax Max" */

Setting default values on labeled arguments

Another powerful feature labeled arguments provide is the option to set default values for optional values.

Note: when setting default values on your function parameters, you don't need to wrap your type with an option() statement or the ?, but you will need to add the (), a.k.a. the unit type as the last parameter to the function when it's declared and when it's called or you will get a compilation error.
let puppyName = (~lastName="Max", ~firstName, ()) =>
  {j|$firstName $lastName|j};

Js.log(puppyName(~firstName="Jax", ()));

/* "Jax Max" */

Setting default values with types

As usual, you can always explicitly add your own types to the function arguments if the Reason compiler has trouble inferring the types on its own or if you've created your own types for them, and set a default value.

let puppyName = (~lastName: string="Max", ~firstName: string, ()) =>
  {j|$firstName $lastName|j};

Js.log(puppyName(~firstName="Jax", ()));

/* "Jax Max" */

Conclusion

Named function arguments/parameters are one of my favorite features of ReasonML, in addition to pattern matching, and I highly recommend using them for functions with multiple arguments. In my opinion, it makes your functions more readable and predictable. Happy coding! SL

Subscribe to Sean W. Lawrence

Don’t miss out on the latest issues. Sign up now to get access to the library of members-only issues.
jamie@example.com
Subscribe