aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/data/collection.lux
blob: 5c83211a124305452ecf76b9429d5c244f912a10 (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
(.using
 [library
  [lux (.except)
   ["$" documentation (.only documentation:)]
   [data
    [text (.only \n)
     ["%" \\format (.only format)]]
    [collection
     ["[0]" list]]]]]
 ["[0]" /
  ["[1][0]" array]
  ["[1][0]" bits]
  ["[1][0]" dictionary]
  ["[1][0]" list]
  ["[1][0]" queue]
  ["[1][0]" sequence]
  ["[1][0]" stream]
  ["[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
         /sequence.documentation
         /stream.documentation
         /stack.documentation
         /set.documentation
         /tree.documentation
         )))