f6c4e2794e0146cc835e38afc1910ce2da8cc3ff
[dotfiles/.git] / reflect.go
1 package reflect
2
3 type Type interface {
4         String() string
5 }
6
7 type Value struct {
8 }
9
10 func (Value) String() string
11
12 func SliceOf(Type) Type
13
14 func TypeOf(interface{}) Type
15
16 func ValueOf(interface{}) Value