-
Notifications
You must be signed in to change notification settings - Fork 3
/
.jazzy.yaml
57 lines (50 loc) · 1.04 KB
/
.jazzy.yaml
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
50
51
52
53
54
55
56
57
module: DataStructures
clean: true
xcodebuild_arguments:
- '-scheme'
- 'Structure-Package'
swift_version: 4.2
theme: fullwidth
custom_categories:
- name: Abstract
children:
- Either
- IntervalRelation
- name: Linear
children:
- Matrix
- LinkedList
- Stack
- SortedArray
- CircularArray
- name: Trees
children:
- Tree
- BinaryHeap
- name: Graphs
children:
- ReferenceGraph
- name: Dictionaries
children:
- DictionaryProtocol
- OrderedDictionary
- SortedDictionary
- name: Zip
children:
- Zip3Sequence
- ZipToLongest2Sequence
- ZipToLongest3Sequence
- zip(_:_:_:)
- zip(_:_:fill1:fill2:)
- zip(_:_:fill:)
- zip(_:_:_:fill1:fill2:fill3:)
- zip(_:_:_:fill:)
- name: Wrapping Protocols
children:
- IntegerWrapping
- FloatWrapping
- DoubleWrapping
- SequenceWrapping
- CollectionWrapping
- SortedCollectionWrapping
- RandomAccessCollectionWrapping