Import Upstream version 20180207
[hcoop/debian/mlton.git] / lib / mlton / queue / persistent.fun
CommitLineData
7f918cf1
CE
1(* Copyright (C) 1999-2006 Henry Cejtin, Matthew Fluet, Suresh
2 * Jagannathan, and Stephen Weeks.
3 *
4 * MLton is released under a BSD-style license.
5 * See the file MLton-LICENSE for details.
6 *)
7(*-------------------------------------------------------------------*)
8(* PersistentQueue *)
9(*-------------------------------------------------------------------*)
10
11functor PersistentQueue(Q: BASIC_PERSISTENT_QUEUE)
12 : PERSISTENT_QUEUE =
13struct
14
15open Q
16
17exception Deque
18fun deque q =
19 case destruct q of
20 SOME xq => xq
21 | NONE => raise Deque
22
23end