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