This repository has been archived by the owner on Aug 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
.jazzy.yml
58 lines (58 loc) · 1.78 KB
/
.jazzy.yml
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
58
# jazzy --config .jazzy.yml
author: "Big Nerd Ranch"
author_url: "https://bignerdranch.github.io"
copyright: "© 2014-2020 [Big Nerd Ranch](//www.bignerdranch.com) under [MIT license](//github.com/bignerdranch/Deferred/blob/master/LICENSE)."
custom_categories:
- name: Articles
children:
- Why Deferred?
- Getting Started
- Basic Tasks
- Mastering The Future Type
- Migrating to Swift Concurrency
- name: Futures and Promises
children:
- Deferred
- FutureProtocol
- PromiseProtocol
- name: Transforming Futures
children:
- Future
- Collection
- Sequence
- name: Controlling Where Callbacks Execute
children:
- Executor
- DispatchQueue
- OperationQueue
- RunLoop
- CFRunLoop
- name: Futures Than Can Fail
children:
- TaskResult
- Task
- TaskProtocol
- Either
- name: Coordinating Access to Data
children:
- Protected
- Locking
- name: Coordination Primitives
children:
- NativeLock
- POSIXReadWriteLock
- DispatchSemaphore
- NSLock
documentation: Documentation/Guide/*.md
abstract: Documentation/*.md
github_url: "https://github.com/bignerdranch/Deferred"
head: |
<meta property="og:site_name" content="Deferred Reference">
<meta property="og:description" content="An implementation of OCaml's Deferred for Swift. It lets you work with values that haven't been determined yet, like an array that's coming later from a web service call.">
<meta property="og:image" content="//www.bignerdranch.com/assets/img/logos/square-logo.jpeg">
<link rel="shortcut icon" type="image/x-icon" href="//www.bignerdranch.com/favicon.png">
hide_documentation_coverage: true
module: Deferred
root_url: "https://bignerdranch.github.io/Deferred/"
theme: fullwidth
use_safe_filenames: true