# 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/4gxawqa
深入淺出 Go 泛型之泛型使用三步曲**
大家好,我是漁夫子,又跟大家見面了。今天跟大家聊聊 Go1.18 中新增的泛型功能。。01 Go 中的泛型是什麼衆所周知,Go 是一門靜態類型的語言。靜態類型也就意味着在使用 Go 語言編程時,所有的變量、函數參數都需要指定具體的類型,同時在編譯階段編譯器也會對指定的數據類型進行校驗。這也意味着一個函數的輸入參數和返回參數都必須要和具體的類型強相關,不能被不同類型的數據結構所複用。而泛型就是要解決 ⌘ Read more