by bowen @jiaowoxiaobala
Implement type CheckRepeatedChars<T> which will return whether type T contains duplicated member
For example:
type CheckRepeatedTuple<[1, 2, 3]> // false
type CheckRepeatedTuple<[1, 2, 1]> // trueby bowen @jiaowoxiaobala
Implement type CheckRepeatedChars<T> which will return whether type T contains duplicated member
For example:
type CheckRepeatedTuple<[1, 2, 3]> // false
type CheckRepeatedTuple<[1, 2, 1]> // true