package tablecloth-native
Install
dune-project
Dependency
Authors
Maintainers
Sources
md5=0c71dd4035d6fa4978baabc3c932dba3
sha512=44ba09f1ff43e61403703cc244e91e0f8062bd9da998f031430d701a4de148b02878f7f881303f6ded261176f21926ab5ba00a313510ed8e2d2f252b3fd00054
doc/tablecloth-native/Tablecloth/Option/index.html
Module Tablecloth.Option
Functions for working with optional values.
Option represents a value which may not be present.
It is a variant containing the (Some 'a) and None constructors
type 'a t =
| Some of 'a
| NoneMany other languages use null or nil to represent something similar.
Option values are very common and they are used in a number of ways:
- Initial values
- Optional function arguments
- Optional record fields
- Return values for functions that are not defined over their entire input range (partial functions).
- Return value for otherwise reporting simple errors, where None is returned on error.
Lots of functions in Standard return options, one you have one you can work with the value it might contain by:
- Pattern matching
- Using
maporandThen(or their operators inInfix) - Unwrapping it using
unwrap, or its operator(|?) - Converting a
Noneinto an exception usingunwrapUnsafe
If the function you are writing can fail in a variety of ways, use a Result instead to better communicate with the caller.
If a function only fails in unexpected, unrecoverable ways, maybe you want raise exception.
A function version of the Some constructor.
In most situations you just want to use the Some constructor directly.
However OCaml doesn't support piping to variant constructors.
Note that when using the Reason syntax you can use fast pipe (->) with variant constructors, so you don't need this function.
See the Reason docs for more.
Examples
String.reverse("desserts") |> Option.some = Some "desserts" Returns None if the first argument is None, otherwise return the second argument.
Unlike the built in && operator, the and_ function does not short-circuit.
When you call and_, both arguments are evaluated before being passed to the function.
Examples
Option.and_ (Some 11) (Some 22) = Some 22Option.and_ None (Some 22) = NoneOption.and_ (Some 11) None = NoneOption.and_ None None = NoneReturn the first argument if it isSome, otherwise return the second.
Unlike the built in || operator, the or_ function does not short-circuit. When you call or_, both arguments are evaluated before being passed to the function.
Examples
Option.or_ (Some 11) (Some 22) = Some 11Option.or_ None (Some 22) = Some 22Option.or_ (Some 11) None = Some 11Option.or_ None None = NoneTransform two options into an option of a Tuple.
Returns None if either of the aguments is None.
Examples
Option.both (Some 3004) (Some "Ant") = Some (3004, "Ant")Option.both (Some 3004) None = NoneOption.both None (Some "Ant") = NoneOption.both None None = NoneFlatten two optional layers into a single optional layer.
Examples
Option.flatten (Some (Some 4)) = Some 4Option.flatten (Some None) = NoneOption.flatten (None) = NoneTransform the value inside an option.
Leaves None untouched.
See (>>|) for an operator version of this function.
Examples
Option.map ~f:(fun x -> x * x) (Some 9) = Some 81Option.map ~f:Int.toString (Some 9) = Some "9"Option.map ~f:(fun x -> x * x) None = NoneCombine two Options
If both options are Some returns, as Some the result of running f on both values.
If either value is None, returns None
Examples
Option.map2 (Some 3) (Some 4) ~f:Int.add = Some 7Option.map2 (Some 3) (Some 4) ~f:Tuple.make = Some (3, 4)Option.map2 (Some 3) None ~f:Int.add = NoneOption.map2 None (Some 4) ~f:Int.add = NoneChain together many computations that may not return a value.
It is helpful to see its definition:
let andThen t ~f =
match t with
| Some x -> f x
| None -> NoneThis means we only continue with the callback if we have a value.
For example, say you need to parse some user input as a month:
let toValidMonth (month: int) : (int option) =
if (1 <= month && month <= 12) then
Some month
else
None
in
let userInput = "5" in
Int.fromString userInput
|> Option.andThen ~f:toValidMonthIf String.toInt produces None (because the userInput was not an integer) this entire chain of operations will short-circuit and result in None. If toValidMonth results in None, again the chain of computations will result in None.
See (>>=) for an operator version of this function.
Examples
Option.andThen (Some [1, 2, 3]) ~f:List.head = Some 1Option.andThen (Some []) ~f:List.head = Noneval unwrap : 'a t -> default:'a -> 'aUnwrap an option('a) returning default if called with None.
This comes in handy when paired with functions like Map.get or List.head which return an Option.
See (|?) for an operator version of this function.
Note This can be overused! Many cases are better handled using pattern matching, map or andThen.
Examples
Option.unwrap ~default:99 (Some 42) = 42Option.unwrap ~default:99 None = 99Option.unwrap ~default:"unknown" (Map.get Map.String.empty "Tom") = "unknown"val unwrapUnsafe : 'a t -> 'aUnwrap an option('a) returning the enclosed 'a.
Note in most situations it is better to use pattern matching, unwrap, map or andThen. Can you structure your code slightly differently to avoid potentially raising an exception?
Exceptions
Raises an Invalid_argument exception if called with None
Examples
List.head [1;2;3] |> Option.unwrapUnsafe = 1List.head [] |> Option.unwrapUnsafeval unwrap_unsafe : 'a t -> 'aval isSome : 'a t -> boolCheck if an Option is a Some.
In most situtations you should just use pattern matching instead.
Examples
Option.isSome (Some 3004) = trueOption.isSome None = falseval is_some : 'a t -> boolval isNone : 'a t -> boolCheck if an Option is a None.
In most situtations you should just use pattern matching instead.
Examples
Option.isNone (Some 3004) = falseOption.isNone None = trueval is_none : 'a t -> boolval tap : 'a t -> f:('a -> unit) -> unitRun a function against a value, if it is present.
val toArray : 'a t -> 'a arrayConvert an option to a Array.
None is represented as an empty list and Some is represented as a list of one element.
Examples
Option.toArray (Some 3004) = [|3004|]Option.toArray (None) = [||]val to_array : 'a t -> 'a arrayval toList : 'a t -> 'a listConvert an option to a List.
None is represented as an empty list and Some is represented as a list of one element.
Examples
Option.toList (Some 3004) = [3004]Option.toList (None) = []val to_list : 'a t -> 'a listCompare
Test two optional values for equality using the provided function
Examples
Option.equal Int.equal (Some 1) (Some 1) = trueOption.equal Int.equal (Some 1) (Some 3) = falseOption.equal Int.equal (Some 1) None = falseOption.equal Int.equal None None = trueCompare two optional values using the provided function.
A None is "less" than a Some
Examples
Option.compare Int.compare (Some 1) (Some 3) = -1Option.compare Int.compare (Some 1) None = 1Option.compare Int.compare None None = 0Operators
For code that works extensively with Options these operators can make things significantly more concise at the expense of placing a greater cognitive burden on future readers.
let nameToAge = Map.String.fromArray [|
("Ant", 1);
("Bat", 5);
("Cat", 19);
|] in
let catAge = Map.get nameToAge "Cat" |? 8 in
(* 19 *)
Option.(
Map.get nameToAge "Ant" >>= (fun antAge ->
Map.get nameToAge "Bat" >>| (fun batAge ->
Int.absolute(batAge - antAge)
)
)
)
(* Some (4) *)val (|?) : 'a t -> 'a -> 'aThe operator version of get
Examples
Some 3004 |? 8 = 3004None |? 8 = 8The operator version of map
Examples
Some "desserts" >>| String.reverse = Some "stressed"None >>| String.reverse = None