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)
| 589 | // Note: function bindings should be commonly configured with Overload instances whereas operand traits and |
| 590 | // strict-ness should be rare occurrences. |
| 591 | func MemberOverload(overloadID string, |
| 592 | args []*types.Type, resultType *types.Type, |
| 593 | opts ...OverloadOpt) FunctionOpt { |
| 594 | return newOverload(overloadID, true, args, resultType, opts...) |
| 595 | } |
| 596 | |
| 597 | func newOverload(overloadID string, |
| 598 | memberFunction bool, args []*types.Type, resultType *types.Type, |