cast<R> method

  1. @override
Set<R> cast<R>()
override

Returns a view of this set as having R elements.

This is a non-mutating operation that returns a new view of the set.

Implementation

@override
Set<R> cast<R>() => value.cast<R>();