Skip to content

Latest commit

 

History

History
79 lines (54 loc) · 2.98 KB

0148-generic-subscripts.md

File metadata and controls

79 lines (54 loc) · 2.98 KB

Generic Subscripts

Introduction

Make it possible to have generic subscripts. Example:

extension Collection {
  subscript<Indices: Sequence>(indices: Indices) -> [Iterator.Element] where Indices.Iterator.Element == Index {
    // ...
  }
}

Or a generic return type:

extension JSON {
  subscript<T: JSONConvertible>(key: String) -> T? {
    // ...
  }
}

Swift-evolution thread: Generic Subscripts.

Motivation

Currently, subscripts can't be generic. This is limiting in a number of ways:

  • Some subscripts are very specific and could be made more generic.
  • Some generic methods would feel more natural as a subscript, but currently can't be. This also makes it impossible to use them as lvalues.

This feature is also mentioned in the generics manifesto under generic subscripts. The Rationalizing Sequence end-operation names proposal could greatly benefit from this, as well as the ideas in the String Manifesto.

Proposed solution

Add generics to subscripts. There are two pieces to this: where to add the generic parameter list, and where to add the where-clause. The most straightforward way would be to use the same syntax as methods:

extension Dictionary {
  subscript<Indices: Sequence>(indices: Indices) -> [Iterator.Element] where Indices.Iterator.Element == Index {
    // ...
  }
}

Update Jan 20: during the review it came up that while we're at it, we should add default arguments to subscripts. For example, the following (contrived) example:

subscript<A>(index: A? = nil) -> Element {
    // ...
}

Adding default arguments would unify the compiler's handling of subscripts and functions.

Source compatibility

This is a purely additive change. We don't propose changing the Standard Library to use this new feature, that should be part of a separate proposal. (Likewise, we should consider making subscripts throws in a separate proposal).

Effect on ABI stability

It won’t change the ABI of existing subscript calls.

Effect on API resilience

It won’t change the ABI of existing subscript calls, but if the standard library introduces new generic subscripts that replace older non-generic subscripts, it will impact ABI.

Alternatives considered

None.