blob: f6c4e2794e0146cc835e38afc1910ce2da8cc3ff [file] [log] [blame]
package reflect
type Type interface {
String() string
}
type Value struct {
}
func (Value) String() string
func SliceOf(Type) Type
func TypeOf(interface{}) Type
func ValueOf(interface{}) Value