aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/data/collection.lux
blob: 7d4e0a6bc6af447f2abeba2c0bf26dc8e6d8f652 (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
(.module:
  [library
   [lux "*"
    ["$" documentation {"+" documentation:}]
    [data
     [text {"+" \n}
      ["%" format {"+" format}]]
     [collection
      ["[0]" list]]]]]
  ["[0]" / "_"
   ["[1][0]" array]
   ["[1][0]" bits]
   ["[1][0]" dictionary]
   ["[1][0]" list]
   ["[1][0]" queue]
   ["[1][0]" row]
   ["[1][0]" sequence]
   ["[1][0]" stack]
   ["[1][0]" set]
   ["[1][0]" tree]])

(.def: .public documentation
  (.List $.Module)
  (list.together
   (list /array.documentation
         /bits.documentation
         /dictionary.documentation
         /list.documentation
         /queue.documentation
         /row.documentation
         /sequence.documentation
         /stack.documentation
         /set.documentation
         /tree.documentation
         )))