Update .bashrc
[dotfiles/.git] / reflect / 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