Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Map.StringConstruct a Map with Strings for keys.
type nonrec 'value t = (string, 'value, Standard__.Core.String.identity) tval empty : 'value tA map with nothing in it.
val singleton : key:string -> value:'value -> 'value tCreate a map from a key and value
Examples
Map.String.singleton ~key:"Ant" ~value:1 |> Map.toList = [("Ant", 1)]