# 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/62h6zqa
一文看懂 Go 泛型核心設計**
大家好,我是煎魚。Go1.18 的泛型是鬧得沸沸揚揚,雖然之前寫過很多篇針對泛型的一些設計和思考。但因爲泛型的提案之前一直還沒定型,所以就沒有寫完整介紹。如今已經基本成型,就由煎魚帶大家一起摸透 Go 泛型。本文內容主要涉及泛型的 3 大核心概念,非常值得大家深入瞭解。如下:類型參數。 類型約束。 類型推導。 類型參數----類型參數,這個名詞。不熟悉的小夥伴咋一看就懵逼了。 ⌘ Read more