Metodiset
Metodiset, in Swedish usage, refers to the collection of methods that a type or value exposes for use. In English contexts this is commonly called the method set. The method set consists of the methods that can be invoked on values of that type, subject to language rules about visibility, inheritance, and ownership.
In object-oriented programming, the method set of a class includes instance methods declared by the class and
The precise definition of a method set varies by language. Some languages separate value types and reference
Subtyping and polymorphism influence method sets: for a subtype, the method set must remain compatible with
Related concepts include dynamic dispatch, virtual methods, interfaces or protocols, and access control. Understanding the method