The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #12298 from edwintorok/doc-bigarray

Emphasize that Bigarray.int refers to the OCaml int type, and not the C int type

authored by

Florian Angeletti and committed by
GitHub
96afe938 389ae57e

+15 -6
+8 -4
Changes
··· 214 214 215 215 ### Manual and documentation: 216 216 217 - - #13295: Use syntax for deep effect handlers in the effect handlers manual 218 - page. 219 - (KC Sivaramakrishnan, review by Anil Madhavapeddy, Florian Angeletti and Miod 220 - Vallat) 217 + - #12298: Manual: emphasize that Bigarray.int refers to an OCaml integer, 218 + which does not match the C int type. 219 + (Edwin Török, review by Florian Angeletti) 221 220 222 221 - #12868: Manual: simplify style colours of the post-processed manual and API 223 222 HTML pages, and fix the search button icon ··· 238 237 - #13287: stdlib/sys.mli: Update documentation on Sys.opaque_identity 239 238 following #9412. 240 239 (Matt Walker, review by Guillaume Munch-Maccagnoni and Vincent Laviron) 240 + 241 + - #13295: Use syntax for deep effect handlers in the effect handlers manual 242 + page. 243 + (KC Sivaramakrishnan, review by Anil Madhavapeddy, Florian Angeletti and Miod 244 + Vallat) 241 245 242 246 ### Compiler user-interface and warnings: 243 247
+7 -2
stdlib/bigarray.mli
··· 61 61 and {!Stdlib.input_value}). 62 62 *) 63 63 64 - (** {1 Element kinds} *) 64 + (** {1:elementkinds Element kinds} *) 65 65 66 66 (** Bigarrays can contain elements of the following kinds: 67 67 - IEEE half precision (16 bits) floating-point numbers ··· 186 186 (** See {!Bigarray.char}. *) 187 187 188 188 val int : (int, int_elt) kind 189 - (** See {!Bigarray.char}. *) 189 + (** See {!Bigarray.char} and {!section:elementkinds}. 190 + 191 + Beware that this is a bigarray containing OCaml integers 192 + (signed, 31 bits on 32-bit architectures, 63 bits on 64-bit architectures), 193 + which does not match the [C] int type. 194 + *) 190 195 191 196 val int32 : (int32, int32_elt) kind 192 197 (** See {!Bigarray.char}. *)