You can search for identifiers within the package.
in-package search v0.2.0
leaflet
point.ml
1 2 3 4 5 6 7 8 9 10 11 (* BSD-2-Clause License *) type t = { x : int ; y : int } let of_jv point = let x = Jv.get point "x" |> Jv.to_int in let y = Jv.get point "y" |> Jv.to_int in { x; y }
1 2 3 4 5 6 7 8 9 10 11
(* BSD-2-Clause License *) type t = { x : int ; y : int } let of_jv point = let x = Jv.get point "x" |> Jv.to_int in let y = Jv.get point "y" |> Jv.to_int in { x; y }