# 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/5q22qnq
map 設計與實現(上篇)- 數據結構**
概述\\-\\- 在計算機科學中,關聯數組 (Associative Array),又稱映射 (Map)、字典 (Dictionary) 是一個抽象的數據結構,它包含着類似於(鍵,值)的有序對。從應用的角度來看,Go 語言的 map 數據結構主要有以下常見問題:未初始化寫入時報錯 遍歷時無序 非併發安全 本文通過分析標準庫中 map 的內部實現,嘗試解答上面的問題。內部實現----ma ⌘ Read more