LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 package reflect | 5 package reflect |
6 | 6 |
7 import ( | 7 import ( |
8 "math" | 8 "math" |
9 "runtime" | 9 "runtime" |
10 "strconv" | 10 "strconv" |
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
793 } | 793 } |
794 | 794 |
795 // CanInterface returns true if Interface can be used without panicking. | 795 // CanInterface returns true if Interface can be used without panicking. |
796 func (v Value) CanInterface() bool { | 796 func (v Value) CanInterface() bool { |
797 if v.flag == 0 { | 797 if v.flag == 0 { |
798 panic(&ValueError{"reflect.Value.CanInterface", Invalid}) | 798 panic(&ValueError{"reflect.Value.CanInterface", Invalid}) |
799 } | 799 } |
800 return v.flag&(flagMethod|flagRO) == 0 | 800 return v.flag&(flagMethod|flagRO) == 0 |
801 } | 801 } |
802 | 802 |
803 // Interface returns v's value as an interface{}. | 803 // Interface returns v's current value as an interface{}. |
| 804 // It is equivalent to: |
| 805 //» var i interface{} = (v's underlying value) |
804 // If v is a method obtained by invoking Value.Method | 806 // If v is a method obtained by invoking Value.Method |
805 // (as opposed to Type.Method), Interface cannot return an | 807 // (as opposed to Type.Method), Interface cannot return an |
806 // interface value, so it panics. | 808 // interface value, so it panics. |
807 // It also panics if the Value was obtained by accessing | 809 // It also panics if the Value was obtained by accessing |
808 // unexported struct fields. | 810 // unexported struct fields. |
809 func (v Value) Interface() interface{} { | 811 func (v Value) Interface() (i interface{}) { |
810 return valueInterface(v, true) | 812 return valueInterface(v, true) |
811 } | 813 } |
812 | 814 |
813 func valueInterface(v Value, safe bool) interface{} { | 815 func valueInterface(v Value, safe bool) interface{} { |
814 if v.flag == 0 { | 816 if v.flag == 0 { |
815 panic(&ValueError{"reflect.Value.Interface", 0}) | 817 panic(&ValueError{"reflect.Value.Interface", 0}) |
816 } | 818 } |
817 if v.flag&flagMethod != 0 { | 819 if v.flag&flagMethod != 0 { |
818 panic("reflect.Value.Interface: cannot create interface value fo
r method with bound receiver") | 820 panic("reflect.Value.Interface: cannot create interface value fo
r method with bound receiver") |
819 } | 821 } |
(...skipping 971 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1791 func escapes(x interface{}) { | 1793 func escapes(x interface{}) { |
1792 if dummy.b { | 1794 if dummy.b { |
1793 dummy.x = x | 1795 dummy.x = x |
1794 } | 1796 } |
1795 } | 1797 } |
1796 | 1798 |
1797 var dummy struct { | 1799 var dummy struct { |
1798 b bool | 1800 b bool |
1799 x interface{} | 1801 x interface{} |
1800 } | 1802 } |
LEFT | RIGHT |