(contains? haystack needle)
  haystack: a str
  needle: a char or a str
  returns a bool
F

Returns #t if a string contains a character or substring.

In other words, this function returns #t if (position haystack needle) would return an integer.

whitespace?