You can search for identifiers within the package.
in-package search v0.2.0
ppx_accessor
name.ml
1 2 3 4 5 6 7 8 9 10 11 12 open! Base open! Import type t = string let of_string = Fn.id let to_constructor_string = Fn.id let to_lowercase_string t = let string = String.lowercase t in if Caml.Hashtbl.mem Lexer.keyword_table string then string ^ "_" else string ;;
1 2 3 4 5 6 7 8 9 10 11 12
open! Base open! Import type t = string let of_string = Fn.id let to_constructor_string = Fn.id let to_lowercase_string t = let string = String.lowercase t in if Caml.Hashtbl.mem Lexer.keyword_table string then string ^ "_" else string ;;