# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/34jk34a
channel 的 15 條規則和底層實現**
概述--下面表格中的內容是 Go 語言中 channel 數據類型的使用規則,相信讀者已經可以熟練掌握,本文主要分析 channel 的內部實現中的數據結構和算法,所以相關的基礎概念會直接跳過, 希望讀者閱讀完本文後,可以深入理解表格中的各類規則,從應用層代碼到底層實現,能夠知其然並知其所以然。操作規則\\| 操作 \\| nil \\| 已關閉的 channel \\| 未關閉有緩衝區的 channel \\| 未 ⌘ Read more