Files
emacs/snippets/swift-mode/dispatchasync
2024-04-30 07:08:23 +02:00

10 lines
172 B
Plaintext

# -*- mode: snippet -*-
# name: dispatchAsync
# key: dispatchAsync
# --
DispatchQueue.global(qos: .default).async {
$1
DispatchQueue.main.async {
$0
}
}