Appearance
tm_anytrue
tm_anytrue returns true if any element in a given collection is true or "true". It also returns false if the collection is empty.
true
"true"
false
tm_anytrue(list)
tm_anytrue(["true"]) true tm_anytrue([true]) true tm_anytrue([true, false]) true tm_anytrue([]) false