Module Sarray (.ml)

module Sarray: sig .. end
Messing with arrays.

val print_array : Pervasives.out_channel -> ('a -> string) -> 'a array -> unit
print_array out_channel string_of_ele array prints the given array of elements in the given channel, with a newline after each one; string_of_ele is used to get a string from an element.
Author(s): Maxence Guesdon
Version: 1.0
Array.print_array