Header menu logo issie

Array Module

Functions and values

Function or value Description

Array.chunkAt pred arr

Full Usage: Array.chunkAt pred arr

Parameters:
    pred : 'a -> bool
    arr : 'a seq

Returns: 'a[][]

Split array into array of arrays each such that each element for which pred returns true starts a subarray. Every subarray must contain at least one element. Every subarray except possibly the first starts with an element el for which pred el is true.

pred : 'a -> bool
arr : 'a seq
Returns: 'a[][]

Array.toString chars

Full Usage: Array.toString chars

Parameters:
    chars : char array

Returns: string
chars : char array
Returns: string

Type something to start searching.