by null @kynefuk
Implement Python liked any
function in the type system. A type takes the Array and returns true
if any element of the Array is true. If the Array is empty, return false
.
Python의 any
function을 타입 시스템으로 구현하세요
배열을 사용하고 배열의 요소가 참이면 true
를 반환합니다. 배열이 비어 있으면 false
를 반환합니다
예시:
type Sample1 = AnyOf<[1, "", false, [], {}]> // expected to be true.
type Sample2 = AnyOf<[0, "", false, [], {}]> // expected to be false.