package server-reason-react

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file Belt_Int.ml

1
2
3
4
5
6
7
8
let toFloat = Stdlib.float_of_int
let fromFloat = Stdlib.int_of_float
let fromString i = try Some (int_of_string i) with _ -> None
let toString = string_of_int
let ( + ) = Stdlib.( + )
let ( - ) = Stdlib.( - )
let ( * ) = Stdlib.( * )
let ( / ) = Stdlib.( / )