package reason-standard
Library
Module
Module type
Parameter
Class
Class type
Functions for working with functions.
While the functions in this module can often make code more concise, this often imposes a readability burden on future readers.
Functions for working with functions.
Given a value, returns exactly the same value. This may seem pointless at first glance but it can often be useful when an api offers you more control than you actually need.
Perhaps you want to create an array of integers
Array.initialize 6 ~f:Fun.identity = [|0; 1; 2; 3; 4; 5|]
(In this particular case you probably want to use Array.range
.)
Or maybe you need to register a callback, but dont want to do anything:
let httpMiddleware =
HttpLibrary.createMiddleWare
~onEventYouDoCareAbout:transformAndReturn
~onEventYouDontCareAbout:Fun.identity
Discards the value it is given and returns ()
This is primarily useful when working with imperative side-effecting code or to avoid unused value
compiler warnings when you really meant it, and haven't just made a mistake.
Examples
(* Pretend we have a module with the following signature:
module PretendMutableQueue : sig
type 'a t
(** Adds an element to the queue, returning the new length of the queue *)
val pushReturningLength : 'a t -> 'a -> int
end
*)
let addListToQueue queue list =
List.forEach list ~f:(fun element ->
ignore (MutableQueue.pushReturningLength queue element)
)
in ()
Create a function that always returns the same value.
Useful with functions like List.map
or Array.initialize
Examples
List.map ~f:(Fun.constant 0) [1;2;3;4;5] = [0;0;0;0;0]
Array.initialize 6 ~f:(Fun.constant 0) = [|0;0;0;0;0;0|]
Reverses the argument order of a function.
For any arguments x
and y
, (flip f) x y
is the same as f y x
.
Perhaps you want to fold
something, but the arguments of a function you already have access to are in the wrong order.
See Fun.(<|)
Like (|>)
but in the opposite direction.
f <| x
is exactly the same as f x
.
Maybe you want to apply a function to a match
expression? That sort of thing.
See Fun.(|>)
Saying x |> f
is exactly the same as f x
, just a bit longer.
It is called the "pipe" operator because it lets you write "pipelined" code.
It can make nested function calls more readable.
For example, say we have a sanitize
function for turning user input into integers:
(* Before *)
let sanitize (input: string) : int option =
Int.ofString (String.trim input)
We can rewrite it like this:
(* After *)
let sanitize (input: string) : int option =
input
|> String.trim
|> Int.ofString
This can be overused! When you have three or four steps, the code often gets clearer if you break things out into some smaller piplines assigned to variables. Now the transformation has a name, maybe it could have a type annotation.
It can often be more self-documenting that way!
Function composition, passing results along in the suggested direction.
For example, the following code (in a very roundabout way) checks if a number divided by two is odd:
let isHalfOdd = Fun.(not << Int.isEven << Int.divide ~by:2)
You can think of this operator as equivalent to the following:
(g << f) = (fun x -> g (f x))
So our example expands out to something like this:
let isHalfOdd = fun n -> not (Int.isEven (Int.divide ~by:2 n))
See Fun.compose
Function composition, passing results along in the suggested direction.
For example, the following code checks if the square root of a number is odd:
Int.squareRoot >> Int.isEven >> not
See Fun.composeRight
Useful for performing some side affect in Fun.pipe
-lined code.
Most commonly used to log a value in the middle of a pipeline of function calls.
Examples
let sanitize (input: string) : int option =
input
|> String.trim
|> Fun.tap ~f:(fun trimmedString -> print_endline trimmedString)
|> Int.ofString
Array.filter [|1;3;2;5;4;|] ~f:Int.isEven
|> Fun.tap ~f:(fun numbers -> numbers.(0) <- 0)
|> Fun.tap ~f:Array.reverseInPlace
= [|4;0|]
Runs the provided function, forever.
If an exception is thrown, returns the exception
Runs a function repeatedly.
Examples
let count = ref 0
times(10, fun () -> (count <- !count + 1))
!count = 10
Takes a function f
which takes a single argument of a tuple 'a * 'b
and returns a function which takes two arguments that can be partially applied.
Examples
let squareArea (width, height) = width * height in
let curriedArea : float -> float -> float = curry squareArea in
let sizes = [3, 4, 5] in
List.map sizes ~f:(curriedArea 4) = [12; 16; 20]
Takes a function which takes two arguments and returns a function which takes a single argument of a tuple.
Examples
let sum (a : int) (b: int) : int = a + b in
let uncurriedSum : (int * int) -> int = uncurry add in
uncurriedSum (3, 4) = 7