OutType returns the type of the constructor function's output.
()
| 56 | |
| 57 | // OutType returns the type of the constructor function's output. |
| 58 | func (f Constructor) OutType() reflect.Type { |
| 59 | return f.fnType.Out(0) |
| 60 | } |
| 61 | |
| 62 | // Args returns a copy of the arguments of the constructor function. |
| 63 | func (f Constructor) Args() []Arg { |
no outgoing calls