clojure-dev

Issues: https://clojure.atlassian.net/browse/CLJ | Guide: https://insideclojure.org/2015/05/01/contributing-clojure/
2019-05-26T23:16:57.024100Z

curiously there are ^CharSequence type hints all over clojure.string, and yet most of the functions just call .toString on the args, such that you can actually pass anything that's not nil

2019-05-26T23:18:05.024600Z

it's not universal though; with (clojure.string/includes? s1 s2), s1 can be any type, while s2 must be a CharSequence