MemberOverload defines a new receiver-style overload (or member function) with an overload id, argument types, and result type. Through the use of OverloadOpt options, the overload may also be configured with a binding, an operand trait, and to be non-strict. Note: function bindings should be commo
(overloadID string, args []*types.Type, resultType *types.Type, opts ...OverloadOpt)
| 599 | // Note: function bindings should be commonly configured with Overload instances whereas operand traits and |
| 600 | // strict-ness should be rare occurrences. |
| 601 | func MemberOverload(overloadID string, |
| 602 | args []*types.Type, resultType *types.Type, |
| 603 | opts ...OverloadOpt) FunctionOpt { |
| 604 | return newOverload(overloadID, true, args, resultType, opts...) |
| 605 | } |
| 606 | |
| 607 | func newOverload(overloadID string, |
| 608 | memberFunction bool, args []*types.Type, resultType *types.Type, |