Import Upstream version 20180207
[hcoop/debian/mlton.git] / basis-library / arrays-and-vectors / mono-array2.fun
CommitLineData
7f918cf1
CE
1(* Copyright (C) 2015 Matthew Fluet.
2 * Copyright (C) 1999-2005 Henry Cejtin, Matthew Fluet, Suresh
3 * Jagannathan, and Stephen Weeks.
4 * Copyright (C) 1997-2000 NEC Research Institute.
5 *
6 * MLton is released under a BSD-style license.
7 * See the file MLton-LICENSE for details.
8 *)
9
10functor MonoArray2 (type elem
11 structure MV: MONO_VECTOR
12 where type elem = elem
13 and type vector = elem Vector.vector): MONO_ARRAY2 =
14 struct
15 type elem = MV.elem
16 type vector = MV.vector
17 open Array2
18 type array = elem array
19 type region = {base: array,
20 row: int,
21 col: int,
22 nrows: int option,
23 ncols: int option}
24 end