setOf top-level property

  1. @useResult
KtSet<T> Function<T>([T arg0, T arg1, T arg2, T arg3, T arg4, T arg5, T arg6, T arg7, T arg8, T arg9]) setOf
getter/setter pair

Returns a new read-only set with the given elements. Elements of the set are iterated in the order they were specified.

null is a valid argument

Implementation

@useResult
KtSet<T> Function<T>([
  T arg0,
  T arg1,
  T arg2,
  T arg3,
  T arg4,
  T arg5,
  T arg6,
  T arg7,
  T arg8,
  T arg9,
]) setOf = _setOf;