aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/tool/compiler/meta/archive/signature.lux
blob: e39bb21446c7ada26271d03a0da041a68e516b8f (plain)
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
(.module:
  [library
   [lux #*
    [abstract
     [equivalence (#+ Equivalence)]]
    [control
     ["<>" parser
      ["<b>" binary (#+ Parser)]]]
    [data
     ["." product]
     ["." name]
     ["." text
      ["%" format (#+ format)]]
     [format
      ["." binary (#+ Writer)]]]
    [math
     [number
      ["." nat]]]]]
  [////
   [version (#+ Version)]])

(type: #export Signature
  {#name Name
   #version Version})

(def: #export equivalence
  (Equivalence Signature)
  (product.equivalence name.equivalence nat.equivalence))

(def: #export (description signature)
  (-> Signature Text)
  (format (%.name (get@ #name signature)) " " (%.nat (get@ #version signature))))

(def: #export writer
  (Writer Signature)
  (binary.and (binary.and binary.text binary.text)
              binary.nat))

(def: #export parser
  (Parser Signature)
  (<>.and (<>.and <b>.text <b>.text)
          <b>.nat))