daveyarwood / djy

A library of character utility functions for Clojure
Eclipse Public License 1.0
37 stars 3 forks source link

Add category-major function #7

Closed nibe closed 5 years ago

nibe commented 5 years ago

(category-major ch) returns the major category of the given character or code point, e.g. "N" for a number.

I'm not sure this one is worth adding.

daveyarwood commented 5 years ago

Yeah, this one looks pretty trivial -- it's just (comp str first category) :)