[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Downcase of a symbol
From: |
Urs Liska |
Subject: |
Downcase of a symbol |
Date: |
Sat, 13 Aug 2016 00:33:25 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 |
Hi,
I have written a function to return the lowercase version of a symbol
for use in my library as
% Return the lowercase version of a symbol
#(define (symbol->lowercase sym)
(string->symbol
(string-downcase
(symbol->string sym))))
Just a small question: this seems so general that I can't imagine it
isn't already available somewhere in Scheme, Guile or LilyPond. Of
course I'd prefer using an official function instead of my own.
Thanks for any pointers
Urs
- Downcase of a symbol,
Urs Liska <=