File: util.mlb

package info (click to toggle)
mlton 20100608-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 34,980 kB
  • ctags: 69,089
  • sloc: ansic: 18,421; lisp: 2,879; makefile: 1,570; sh: 1,325; pascal: 256; asm: 97
file content (49 lines) | stat: -rw-r--r-- 952 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
ann
   "sequenceNonUnit warn"
   "nonexhaustiveMatch warn" "redundantMatch warn"
   "warnUnused true" "forceUsed"
in
   local
      $(SML_LIB)/basis/basis.mlb
      $(SML_LIB)/basis/mlton.mlb
      critical.sig
      critical.sml
      assert.sig
      assert.sml
      local-assert.fun
      debug.sig
      debug.sml
      local-debug.fun
      (*
      timeit.sig
      timeit.sml
       *)
      fun-queue.sig
      fun-queue.sml
      imp-queue.sig
      imp-queue.sml
      fun-priority-queue.sig
      fun-priority-queue.fun
   in
      signature CRITICAL
      structure Critical

      signature ASSERT
      structure Assert
      functor LocalAssert

      signature DEBUG
      structure Debug
      functor LocalDebug

      signature FUN_QUEUE
      structure FunQueue

      signature IMP_QUEUE
      structure ImpQueue

      signature FUN_PRIORITY_QUEUE_ARG
      signature FUN_PRIORITY_QUEUE
      functor FunPriorityQueue
   end
end