Skip to content

Allow ifaces to refer to their own type #1661

Description

@marijnh

It must be possible, when specifying methods, to refer to the type that the interface is implemented on. For example, an add method on iface num, which takes an extra parameter of the same type and returns a value of the same type, can't be expressed in the current system without adding a lot of noisy type parameters.

iface num {
  fn add(x: self) -> self;
  fn sub(x: self) -> self;
  /* etc */
}

impl of num for int {
  fn add(x: int) -> int { self + x }
  fn sub(x: int) -> int { self - x }
}

The self type is an implicit type parameter refers to the specialized type. An interface that uses it can not be cast to, since it'd be impossible to type its methods in the absence of a concrete self type.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions