Element - A
- All
Characters:
A
Description
Check if all items in a list are truthy / check if a character is a vowel
Overloads
str
-is_vowel(a) if a.length == 1 else [is_vowel(z) for z in a]
any
-all(a)
Examples
⟨1|2|3⟩ A
=1
⟨⟩ A
=1
`` A
=⟨⟩
`a` A
=1
`hi` A
=⟨0|1⟩