Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Context ¶
type Context interface { // Get 通过 key 在上下文中获取一个字符串 Get(key string) string // GetAny 通过 key 在上下文中获取一个任意类型 GetAny(key string) interface{} // Put 向上下文中传入一个 key: value Put(key string, val interface{}) // GetAndDelete 获取并删除一个 key GetAndDelete(key string) interface{} // Delete 在上下文中删除指定的 key Delete(key string) // ForEach 将上下文中的全部 key 和 value 用传 // 入的函数处理后返回一个处理结果的切片 ForEach(func(key string, val interface{}) interface{}) []interface{} // Clear 清空一个上下文 Clear() // Length 返回上下文的长度 Length() int }
Click to show internal directories.
Click to hide internal directories.