# 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/se7iaqa
Go 1-21-0 新增 3 個內置函數詳解**
01 介紹Go 1.21.0 新增 3 個內置函數,min 和 max 函數,返回 N 個入參中最小 / 最大的參數,參數類型爲 Ordered(有序類型,即支持比較運算符的類型)。clear 函數,刪除 map 中的所有元素,將切片中的所有元素改爲切片類型的零值。本文我們詳細介紹 min、max 和 clear 的使用方式。02Min and max源碼/usr/local/go/src/bui ⌘ Read more