package tablecloth-native
Library
Module
Module type
Parameter
Class
Class type
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 ~length:6 ~f: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 {
eventYouDoCareAbout=transformAndReturn;
eventYouDontCareAbout=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.
module PretendMutableQueue : sig
type 'a t
val pushReturningIndex : 'a t -> 'a -> int
end
let addListToQueue queue list =
List.forEach list ~f:(fun element ->
ignore (PretentMutableQueue.pushReturningIndex queue element)
)
Create a function that always returns the same value.
Useful with functions like List.map
:
List.map ~f:(Fun.constant 0) [1;2;3;4;5] = [0;0;0;0;0]
Array.initialize ~length:6 ~f:(Fun.constant 0) = [|0;0;0;0;0;0|]
flip f
reverses the argument order of the binary function f
. For any arguments x
and y
, (flip f) x y
is 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.(<|)
f <| x
is exactly the same as f x
. It can help you avoid parentheses, which can be nice sometimes. 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. For example, say we have a sanitize
function for turning user input into integers:
(* Before *)
let sanitize (input: string) : int option =
Int.fromString (String.trim input)
We can rewrite it like this:
(* After *)
let sanitize (input: string) : int option =
input
|> String.trim
|> Int.fromString
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.
let sanitize (input: string) : int option =
input
|> String.trim
|> Fun.tap ~f:(fun trimmedString -> print_endline trimmedString)
|> Int.fromString
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|]