A shorter version: (defn char-in-range? [minimum maximum testee] (<= (int minimum) (int testee) (int maximum)))
On Apr 25, 1:52 pm, samppi <rbysam...@gmail.com> wrote: > Wonderful; thank you! > > On Apr 25, 10:57 am, billh04 <h...@tulane.edu> wrote: > > > (defn char-in-range? [minimum maximum testee] > > (let [int-testee (int testee)] > > (and (>= int-testee (int minimum)) (<= int-testee (int maximum))))) > > > On Apr 25, 12:47 pm, samppi <rbysam...@gmail.com> wrote: > > > > Let's say I want to test if a Unicode character is within a certain > > > range, #x0-#x1F. What can I do? > > > > (defn char-in-range? [minimum maximum testee] > > > ???) > > > > (def x \3) > > > > (char-in-range? \u0000 \u001F x) ; false --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---