# 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/v4zpvha
Golang 泛型初識**
本文主要是介紹 Golang 泛型的基本要素,泛型的一些通用代碼的實踐。 分爲以下四個部分 1. 簡介 2. 泛型的基本元素 3. 泛型實踐 4. 總結 簡介--泛型是什麼?泛型編程是一種計算機編程風格,編程範式,其中算法是根據稍後指定的類型編寫的,然後在需要時爲作爲參數提供的特定類型實例化。常用的的編程語言也基本都支持泛型這一特性,例如 C++、C#、 ⌘ Read more