mapToSet<T> method

Set<T> mapToSet<T>(
  1. T f(
    1. N n
    )
)

Implementation

Set<T> mapToSet<T>(T Function(N n) f) => map(f).toSet();