package server-reason-react

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

Source file Belt_Float.ml

1
2
3
4
5
6
7
8
let toInt = Stdlib.int_of_float
let fromInt = Stdlib.float_of_int
let fromString i = try Some (float_of_string i) with _ -> None
let toString = Stdlib.string_of_float
let ( + ) = Stdlib.( +. )
let ( - ) = Stdlib.( -. )
let ( * ) = Stdlib.( *. )
let ( / ) = Stdlib.( /. )