# 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/epncwqa
一個泛型的有序 Go Map 實現**
Go 內建的 map 類型對於插入的元素並沒有保持它們的插入順序,遍歷的時候也故意設置成隨機的 1]。因此,如果我們想讓 map 保持元素的插入順序,需要藉助第三方的庫纔行,今天就給大家介紹一個這樣的庫 OrderedMap。其實在其他編程語言中,也有類似的數據結構,比如 java 中的 LinkedHashMap[2], python 中的OrderedDict。本文介紹如何使用 Go 語言實現 ⌘ Read more